| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String? |
|
No | - |
| String? |
|
No | - | |
| emailVerified | DateTime? |
|
No | - |
| image | String? |
|
No | - |
| accounts | Account[] |
|
Yes | - |
| blocking | Block[] |
|
Yes | - |
| blocked | Block[] |
|
Yes | - |
| chatMessages | ChatMessage[] |
|
Yes | - |
| comments | Comment[] |
|
Yes | - |
| ownedCommunes | Commune[] |
|
Yes | - |
| communes | CommuneUser[] |
|
Yes | - |
| fanOf | Fan[] |
|
Yes | - |
| fans | Fan[] |
|
Yes | - |
| follower | Follow[] |
|
Yes | - |
| following | Follow[] |
|
Yes | - |
| galleries | Gallery[] |
|
Yes | - |
| images | Image[] |
|
Yes | - |
| likes | Like[] |
|
Yes | - |
| posts | Post[] |
|
Yes | - |
| sessions | Session[] |
|
Yes | - |
| shares | Share[] |
|
Yes | - |
| chats | ChatRoom[] |
|
Yes | - |
| membershipId | String? |
|
No | - |
| membership | Membership? |
|
No | - |
| books | Book[] |
|
Yes | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| visible | Boolean |
|
Yes | - |
| content | String? |
|
No | - |
| shareId | String? |
|
No | - |
| commentId | String? |
|
No | - |
| authorId | String |
|
Yes | - |
| images | Image[] |
|
Yes | - |
| likes | Like[] |
|
Yes | - |
| author | User |
|
Yes | - |
| news | News? |
|
No | - |
| comment | Post? |
|
No | - |
| post_comments | Post[] |
|
Yes | - |
| shares | Share[] |
|
Yes | - |
Find zero or one Post
// Get one Post
const post = await prisma.post.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
Find first Post
// Get one Post
const post = await prisma.post.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
| orderBy | PostOrderByWithRelationInput[] | PostOrderByWithRelationInput | No |
| cursor | PostWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostScalarFieldEnum[] | No |
Find zero or more Post
// Get all Post
const Post = await prisma.post.findMany()
// Get first 10 Post
const Post = await prisma.post.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
| orderBy | PostOrderByWithRelationInput[] | PostOrderByWithRelationInput | No |
| cursor | PostWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PostScalarFieldEnum[] | No |
Create one Post
// Create one Post
const Post = await prisma.post.create({
data: {
// ... data to create a Post
}
})
| Name | Type | Required |
|---|---|---|
| data | PostCreateInput | PostUncheckedCreateInput | Yes |
Delete one Post
// Delete one Post
const Post = await prisma.post.delete({
where: {
// ... filter to delete one Post
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
Update one Post
// Update one Post
const post = await prisma.post.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpdateInput | PostUncheckedUpdateInput | Yes |
| where | PostWhereUniqueInput | Yes |
Delete zero or more Post
// Delete a few Post
const { count } = await prisma.post.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereInput | No |
Update zero or one Post
const { count } = await prisma.post.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyInput | Yes |
| where | PostWhereInput | No |
Create or update one Post
// Update or create a Post
const post = await prisma.post.upsert({
create: {
// ... data to create a Post
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Post we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PostWhereUniqueInput | Yes |
| create | PostCreateInput | PostUncheckedCreateInput | Yes |
| update | PostUpdateInput | PostUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| visible | Boolean |
|
Yes | - |
| title | String |
|
Yes | - |
| banner | String? |
|
No | - |
| startDate | DateTime? |
|
No | - |
| endDate | DateTime? |
|
No | - |
| postId | String |
|
Yes | - |
| post | Post |
|
Yes | - |
| audience | Audience |
|
Yes | - |
| views | Int |
|
Yes | - |
| priority | Int |
|
Yes | - |
Find zero or one News
// Get one News
const news = await prisma.news.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NewsWhereUniqueInput | Yes |
Find first News
// Get one News
const news = await prisma.news.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NewsWhereInput | No |
| orderBy | NewsOrderByWithRelationInput[] | NewsOrderByWithRelationInput | No |
| cursor | NewsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | NewsScalarFieldEnum[] | No |
Find zero or more News
// Get all News
const News = await prisma.news.findMany()
// Get first 10 News
const News = await prisma.news.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | NewsWhereInput | No |
| orderBy | NewsOrderByWithRelationInput[] | NewsOrderByWithRelationInput | No |
| cursor | NewsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | NewsScalarFieldEnum[] | No |
Create one News
// Create one News
const News = await prisma.news.create({
data: {
// ... data to create a News
}
})
| Name | Type | Required |
|---|---|---|
| data | NewsCreateInput | NewsUncheckedCreateInput | Yes |
Delete one News
// Delete one News
const News = await prisma.news.delete({
where: {
// ... filter to delete one News
}
})
| Name | Type | Required |
|---|---|---|
| where | NewsWhereUniqueInput | Yes |
Update one News
// Update one News
const news = await prisma.news.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | NewsUpdateInput | NewsUncheckedUpdateInput | Yes |
| where | NewsWhereUniqueInput | Yes |
Delete zero or more News
// Delete a few News
const { count } = await prisma.news.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | NewsWhereInput | No |
Update zero or one News
const { count } = await prisma.news.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | NewsUpdateManyMutationInput | NewsUncheckedUpdateManyInput | Yes |
| where | NewsWhereInput | No |
Create or update one News
// Update or create a News
const news = await prisma.news.upsert({
create: {
// ... data to create a News
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the News we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | NewsWhereUniqueInput | Yes |
| create | NewsCreateInput | NewsUncheckedCreateInput | Yes |
| update | NewsUpdateInput | NewsUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| visible | Boolean |
|
Yes | - |
| title | String? |
|
No | - |
| description | String? |
|
No | - |
| authorId | String |
|
Yes | - |
| shareId | String? |
|
No | - |
| blocking | Block[] |
|
Yes | - |
| commune | Commune? |
|
No | - |
| author | User |
|
Yes | - |
| images | Image[] |
|
Yes | - |
| likes | Like[] |
|
Yes | - |
| shares | Share[] |
|
Yes | - |
| book_gallery | Book? |
|
No | - |
| character_gallery | Character? |
|
No | - |
| chapter_gallery | Chapter? |
|
No | - |
Find zero or one Gallery
// Get one Gallery
const gallery = await prisma.gallery.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GalleryWhereUniqueInput | Yes |
Find first Gallery
// Get one Gallery
const gallery = await prisma.gallery.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GalleryWhereInput | No |
| orderBy | GalleryOrderByWithRelationInput[] | GalleryOrderByWithRelationInput | No |
| cursor | GalleryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GalleryScalarFieldEnum[] | No |
Find zero or more Gallery
// Get all Gallery
const Gallery = await prisma.gallery.findMany()
// Get first 10 Gallery
const Gallery = await prisma.gallery.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | GalleryWhereInput | No |
| orderBy | GalleryOrderByWithRelationInput[] | GalleryOrderByWithRelationInput | No |
| cursor | GalleryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GalleryScalarFieldEnum[] | No |
Create one Gallery
// Create one Gallery
const Gallery = await prisma.gallery.create({
data: {
// ... data to create a Gallery
}
})
| Name | Type | Required |
|---|---|---|
| data | GalleryCreateInput | GalleryUncheckedCreateInput | Yes |
Delete one Gallery
// Delete one Gallery
const Gallery = await prisma.gallery.delete({
where: {
// ... filter to delete one Gallery
}
})
| Name | Type | Required |
|---|---|---|
| where | GalleryWhereUniqueInput | Yes |
Update one Gallery
// Update one Gallery
const gallery = await prisma.gallery.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GalleryUpdateInput | GalleryUncheckedUpdateInput | Yes |
| where | GalleryWhereUniqueInput | Yes |
Delete zero or more Gallery
// Delete a few Gallery
const { count } = await prisma.gallery.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GalleryWhereInput | No |
Update zero or one Gallery
const { count } = await prisma.gallery.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GalleryUpdateManyMutationInput | GalleryUncheckedUpdateManyInput | Yes |
| where | GalleryWhereInput | No |
Create or update one Gallery
// Update or create a Gallery
const gallery = await prisma.gallery.upsert({
create: {
// ... data to create a Gallery
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Gallery we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | GalleryWhereUniqueInput | Yes |
| create | GalleryCreateInput | GalleryUncheckedCreateInput | Yes |
| update | GalleryUpdateInput | GalleryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| visible | Boolean |
|
Yes | - |
| title | String? |
|
No | - |
| authorId | String |
|
Yes | - |
| galleryId | String? |
|
No | - |
| shareId | String? |
|
No | - |
| url | String |
|
Yes | - |
| postId | String? |
|
No | - |
| height | Int? |
|
No | - |
| width | Int? |
|
No | - |
| author | User |
|
Yes | - |
| gallery | Gallery? |
|
No | - |
| post | Post? |
|
No | - |
| likes | Like[] |
|
Yes | - |
| shares | Share[] |
|
Yes | - |
Find zero or one Image
// Get one Image
const image = await prisma.image.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
Find first Image
// Get one Image
const image = await prisma.image.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
| orderBy | ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput | No |
| cursor | ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ImageScalarFieldEnum[] | No |
Find zero or more Image
// Get all Image
const Image = await prisma.image.findMany()
// Get first 10 Image
const Image = await prisma.image.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
| orderBy | ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput | No |
| cursor | ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ImageScalarFieldEnum[] | No |
Create one Image
// Create one Image
const Image = await prisma.image.create({
data: {
// ... data to create a Image
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageCreateInput | ImageUncheckedCreateInput | Yes |
Delete one Image
// Delete one Image
const Image = await prisma.image.delete({
where: {
// ... filter to delete one Image
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
Update one Image
// Update one Image
const image = await prisma.image.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageUpdateInput | ImageUncheckedUpdateInput | Yes |
| where | ImageWhereUniqueInput | Yes |
Delete zero or more Image
// Delete a few Image
const { count } = await prisma.image.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereInput | No |
Update zero or one Image
const { count } = await prisma.image.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ImageUpdateManyMutationInput | ImageUncheckedUpdateManyInput | Yes |
| where | ImageWhereInput | No |
Create or update one Image
// Update or create a Image
const image = await prisma.image.upsert({
create: {
// ... data to create a Image
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Image we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ImageWhereUniqueInput | Yes |
| create | ImageCreateInput | ImageUncheckedCreateInput | Yes |
| update | ImageUpdateInput | ImageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| authorId | String |
|
Yes | - |
| postId | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| galleryId | String? |
|
No | - |
| imageId | String? |
|
No | - |
| commentId | String? |
|
No | - |
| characterId | String? |
|
No | - |
| bookId | String? |
|
No | - |
| author | User |
|
Yes | - |
| comment | Comment? |
|
No | - |
| gallery | Gallery? |
|
No | - |
| image | Image? |
|
No | - |
| post | Post? |
|
No | - |
| character | Character? |
|
No | - |
| book | Book? |
|
No | - |
Find zero or one Like
// Get one Like
const like = await prisma.like.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereUniqueInput | Yes |
Find first Like
// Get one Like
const like = await prisma.like.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereInput | No |
| orderBy | LikeOrderByWithRelationInput[] | LikeOrderByWithRelationInput | No |
| cursor | LikeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LikeScalarFieldEnum[] | No |
Find zero or more Like
// Get all Like
const Like = await prisma.like.findMany()
// Get first 10 Like
const Like = await prisma.like.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LikeWhereInput | No |
| orderBy | LikeOrderByWithRelationInput[] | LikeOrderByWithRelationInput | No |
| cursor | LikeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LikeScalarFieldEnum[] | No |
Create one Like
// Create one Like
const Like = await prisma.like.create({
data: {
// ... data to create a Like
}
})
| Name | Type | Required |
|---|---|---|
| data | LikeCreateInput | LikeUncheckedCreateInput | Yes |
Delete one Like
// Delete one Like
const Like = await prisma.like.delete({
where: {
// ... filter to delete one Like
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereUniqueInput | Yes |
Update one Like
// Update one Like
const like = await prisma.like.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LikeUpdateInput | LikeUncheckedUpdateInput | Yes |
| where | LikeWhereUniqueInput | Yes |
Delete zero or more Like
// Delete a few Like
const { count } = await prisma.like.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereInput | No |
Update zero or one Like
const { count } = await prisma.like.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyInput | Yes |
| where | LikeWhereInput | No |
Create or update one Like
// Update or create a Like
const like = await prisma.like.upsert({
create: {
// ... data to create a Like
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Like we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereUniqueInput | Yes |
| create | LikeCreateInput | LikeUncheckedCreateInput | Yes |
| update | LikeUpdateInput | LikeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| visible | Boolean |
|
Yes | - |
| authorId | String |
|
Yes | - |
| postId | String? |
|
No | - |
| galleryId | String? |
|
No | - |
| imageId | String? |
|
No | - |
| author | User |
|
Yes | - |
| gallery | Gallery? |
|
No | - |
| image | Image? |
|
No | - |
| post | Post? |
|
No | - |
Find zero or one Share
// Get one Share
const share = await prisma.share.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShareWhereUniqueInput | Yes |
Find first Share
// Get one Share
const share = await prisma.share.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShareWhereInput | No |
| orderBy | ShareOrderByWithRelationInput[] | ShareOrderByWithRelationInput | No |
| cursor | ShareWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ShareScalarFieldEnum[] | No |
Find zero or more Share
// Get all Share
const Share = await prisma.share.findMany()
// Get first 10 Share
const Share = await prisma.share.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ShareWhereInput | No |
| orderBy | ShareOrderByWithRelationInput[] | ShareOrderByWithRelationInput | No |
| cursor | ShareWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ShareScalarFieldEnum[] | No |
Create one Share
// Create one Share
const Share = await prisma.share.create({
data: {
// ... data to create a Share
}
})
| Name | Type | Required |
|---|---|---|
| data | ShareCreateInput | ShareUncheckedCreateInput | Yes |
Delete one Share
// Delete one Share
const Share = await prisma.share.delete({
where: {
// ... filter to delete one Share
}
})
| Name | Type | Required |
|---|---|---|
| where | ShareWhereUniqueInput | Yes |
Update one Share
// Update one Share
const share = await prisma.share.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ShareUpdateInput | ShareUncheckedUpdateInput | Yes |
| where | ShareWhereUniqueInput | Yes |
Delete zero or more Share
// Delete a few Share
const { count } = await prisma.share.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShareWhereInput | No |
Update zero or one Share
const { count } = await prisma.share.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ShareUpdateManyMutationInput | ShareUncheckedUpdateManyInput | Yes |
| where | ShareWhereInput | No |
Create or update one Share
// Update or create a Share
const share = await prisma.share.upsert({
create: {
// ... data to create a Share
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Share we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ShareWhereUniqueInput | Yes |
| create | ShareCreateInput | ShareUncheckedCreateInput | Yes |
| update | ShareUpdateInput | ShareUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| followerId | String |
|
Yes | - |
| followingId | String? |
|
No | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| follower | User |
|
Yes | - |
| following | User? |
|
No | - |
| characterId | String? |
|
No | - |
| character | Character? |
|
No | - |
| bookId | String? |
|
No | - |
| book | Book? |
|
No | - |
Find zero or one Follow
// Get one Follow
const follow = await prisma.follow.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereUniqueInput | Yes |
Find first Follow
// Get one Follow
const follow = await prisma.follow.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereInput | No |
| orderBy | FollowOrderByWithRelationInput[] | FollowOrderByWithRelationInput | No |
| cursor | FollowWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowScalarFieldEnum[] | No |
Find zero or more Follow
// Get all Follow
const Follow = await prisma.follow.findMany()
// Get first 10 Follow
const Follow = await prisma.follow.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FollowWhereInput | No |
| orderBy | FollowOrderByWithRelationInput[] | FollowOrderByWithRelationInput | No |
| cursor | FollowWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowScalarFieldEnum[] | No |
Create one Follow
// Create one Follow
const Follow = await prisma.follow.create({
data: {
// ... data to create a Follow
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowCreateInput | FollowUncheckedCreateInput | Yes |
Delete one Follow
// Delete one Follow
const Follow = await prisma.follow.delete({
where: {
// ... filter to delete one Follow
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereUniqueInput | Yes |
Update one Follow
// Update one Follow
const follow = await prisma.follow.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowUpdateInput | FollowUncheckedUpdateInput | Yes |
| where | FollowWhereUniqueInput | Yes |
Delete zero or more Follow
// Delete a few Follow
const { count } = await prisma.follow.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereInput | No |
Update zero or one Follow
const { count } = await prisma.follow.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowUpdateManyMutationInput | FollowUncheckedUpdateManyInput | Yes |
| where | FollowWhereInput | No |
Create or update one Follow
// Update or create a Follow
const follow = await prisma.follow.upsert({
create: {
// ... data to create a Follow
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Follow we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowWhereUniqueInput | Yes |
| create | FollowCreateInput | FollowUncheckedCreateInput | Yes |
| update | FollowUpdateInput | FollowUncheckedUpdateInput | Yes |
Find zero or one Fan
// Get one Fan
const fan = await prisma.fan.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FanWhereUniqueInput | Yes |
Find first Fan
// Get one Fan
const fan = await prisma.fan.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FanWhereInput | No |
| orderBy | FanOrderByWithRelationInput[] | FanOrderByWithRelationInput | No |
| cursor | FanWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FanScalarFieldEnum[] | No |
Find zero or more Fan
// Get all Fan
const Fan = await prisma.fan.findMany()
// Get first 10 Fan
const Fan = await prisma.fan.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FanWhereInput | No |
| orderBy | FanOrderByWithRelationInput[] | FanOrderByWithRelationInput | No |
| cursor | FanWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FanScalarFieldEnum[] | No |
Create one Fan
// Create one Fan
const Fan = await prisma.fan.create({
data: {
// ... data to create a Fan
}
})
| Name | Type | Required |
|---|---|---|
| data | FanCreateInput | FanUncheckedCreateInput | Yes |
Delete one Fan
// Delete one Fan
const Fan = await prisma.fan.delete({
where: {
// ... filter to delete one Fan
}
})
| Name | Type | Required |
|---|---|---|
| where | FanWhereUniqueInput | Yes |
Update one Fan
// Update one Fan
const fan = await prisma.fan.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FanUpdateInput | FanUncheckedUpdateInput | Yes |
| where | FanWhereUniqueInput | Yes |
Delete zero or more Fan
// Delete a few Fan
const { count } = await prisma.fan.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FanWhereInput | No |
Update zero or one Fan
const { count } = await prisma.fan.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FanUpdateManyMutationInput | FanUncheckedUpdateManyInput | Yes |
| where | FanWhereInput | No |
Create or update one Fan
// Update or create a Fan
const fan = await prisma.fan.upsert({
create: {
// ... data to create a Fan
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Fan we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FanWhereUniqueInput | Yes |
| create | FanCreateInput | FanUncheckedCreateInput | Yes |
| update | FanUpdateInput | FanUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| visible | Boolean |
|
Yes | - |
| party | String |
|
Yes | - |
| messages | ChatMessage[] |
|
Yes | - |
| users | User[] |
|
Yes | - |
Find zero or one ChatRoom
// Get one ChatRoom
const chatRoom = await prisma.chatRoom.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatRoomWhereUniqueInput | Yes |
Find first ChatRoom
// Get one ChatRoom
const chatRoom = await prisma.chatRoom.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatRoomWhereInput | No |
| orderBy | ChatRoomOrderByWithRelationInput[] | ChatRoomOrderByWithRelationInput | No |
| cursor | ChatRoomWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatRoomScalarFieldEnum[] | No |
Find zero or more ChatRoom
// Get all ChatRoom
const ChatRoom = await prisma.chatRoom.findMany()
// Get first 10 ChatRoom
const ChatRoom = await prisma.chatRoom.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChatRoomWhereInput | No |
| orderBy | ChatRoomOrderByWithRelationInput[] | ChatRoomOrderByWithRelationInput | No |
| cursor | ChatRoomWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatRoomScalarFieldEnum[] | No |
Create one ChatRoom
// Create one ChatRoom
const ChatRoom = await prisma.chatRoom.create({
data: {
// ... data to create a ChatRoom
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatRoomCreateInput | ChatRoomUncheckedCreateInput | Yes |
Delete one ChatRoom
// Delete one ChatRoom
const ChatRoom = await prisma.chatRoom.delete({
where: {
// ... filter to delete one ChatRoom
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatRoomWhereUniqueInput | Yes |
Update one ChatRoom
// Update one ChatRoom
const chatRoom = await prisma.chatRoom.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatRoomUpdateInput | ChatRoomUncheckedUpdateInput | Yes |
| where | ChatRoomWhereUniqueInput | Yes |
Delete zero or more ChatRoom
// Delete a few ChatRoom
const { count } = await prisma.chatRoom.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatRoomWhereInput | No |
Update zero or one ChatRoom
const { count } = await prisma.chatRoom.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatRoomUpdateManyMutationInput | ChatRoomUncheckedUpdateManyInput | Yes |
| where | ChatRoomWhereInput | No |
Create or update one ChatRoom
// Update or create a ChatRoom
const chatRoom = await prisma.chatRoom.upsert({
create: {
// ... data to create a ChatRoom
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ChatRoom we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatRoomWhereUniqueInput | Yes |
| create | ChatRoomCreateInput | ChatRoomUncheckedCreateInput | Yes |
| update | ChatRoomUpdateInput | ChatRoomUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| visible | Boolean |
|
Yes | - |
| seen | Boolean |
|
Yes | - |
| chatRoomId | String |
|
Yes | - |
| authorId | String |
|
Yes | - |
| content | String |
|
Yes | - |
| author | User |
|
Yes | - |
| chatRoom | ChatRoom |
|
Yes | - |
Find zero or one ChatMessage
// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
Find first ChatMessage
// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
| orderBy | ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput | No |
| cursor | ChatMessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatMessageScalarFieldEnum[] | No |
Find zero or more ChatMessage
// Get all ChatMessage
const ChatMessage = await prisma.chatMessage.findMany()
// Get first 10 ChatMessage
const ChatMessage = await prisma.chatMessage.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
| orderBy | ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput | No |
| cursor | ChatMessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChatMessageScalarFieldEnum[] | No |
Create one ChatMessage
// Create one ChatMessage
const ChatMessage = await prisma.chatMessage.create({
data: {
// ... data to create a ChatMessage
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageCreateInput | ChatMessageUncheckedCreateInput | Yes |
Delete one ChatMessage
// Delete one ChatMessage
const ChatMessage = await prisma.chatMessage.delete({
where: {
// ... filter to delete one ChatMessage
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
Update one ChatMessage
// Update one ChatMessage
const chatMessage = await prisma.chatMessage.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput | Yes |
| where | ChatMessageWhereUniqueInput | Yes |
Delete zero or more ChatMessage
// Delete a few ChatMessage
const { count } = await prisma.chatMessage.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereInput | No |
Update zero or one ChatMessage
const { count } = await prisma.chatMessage.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyInput | Yes |
| where | ChatMessageWhereInput | No |
Create or update one ChatMessage
// Update or create a ChatMessage
const chatMessage = await prisma.chatMessage.upsert({
create: {
// ... data to create a ChatMessage
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the ChatMessage we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChatMessageWhereUniqueInput | Yes |
| create | ChatMessageCreateInput | ChatMessageUncheckedCreateInput | Yes |
| update | ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput | Yes |
Find zero or one CommentThread
// Get one CommentThread
const commentThread = await prisma.commentThread.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentThreadWhereUniqueInput | Yes |
Find first CommentThread
// Get one CommentThread
const commentThread = await prisma.commentThread.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentThreadWhereInput | No |
| orderBy | CommentThreadOrderByWithRelationInput[] | CommentThreadOrderByWithRelationInput | No |
| cursor | CommentThreadWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentThreadScalarFieldEnum[] | No |
Find zero or more CommentThread
// Get all CommentThread
const CommentThread = await prisma.commentThread.findMany()
// Get first 10 CommentThread
const CommentThread = await prisma.commentThread.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CommentThreadWhereInput | No |
| orderBy | CommentThreadOrderByWithRelationInput[] | CommentThreadOrderByWithRelationInput | No |
| cursor | CommentThreadWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentThreadScalarFieldEnum[] | No |
Create one CommentThread
// Create one CommentThread
const CommentThread = await prisma.commentThread.create({
data: {
// ... data to create a CommentThread
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentThreadCreateInput | CommentThreadUncheckedCreateInput | Yes |
Delete one CommentThread
// Delete one CommentThread
const CommentThread = await prisma.commentThread.delete({
where: {
// ... filter to delete one CommentThread
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentThreadWhereUniqueInput | Yes |
Update one CommentThread
// Update one CommentThread
const commentThread = await prisma.commentThread.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentThreadUpdateInput | CommentThreadUncheckedUpdateInput | Yes |
| where | CommentThreadWhereUniqueInput | Yes |
Delete zero or more CommentThread
// Delete a few CommentThread
const { count } = await prisma.commentThread.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentThreadWhereInput | No |
Update zero or one CommentThread
const { count } = await prisma.commentThread.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentThreadUpdateManyMutationInput | CommentThreadUncheckedUpdateManyInput | Yes |
| where | CommentThreadWhereInput | No |
Create or update one CommentThread
// Update or create a CommentThread
const commentThread = await prisma.commentThread.upsert({
create: {
// ... data to create a CommentThread
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CommentThread we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentThreadWhereUniqueInput | Yes |
| create | CommentThreadCreateInput | CommentThreadUncheckedCreateInput | Yes |
| update | CommentThreadUpdateInput | CommentThreadUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| threadType | Entity |
|
Yes | - |
| threadId | String |
|
Yes | - |
| authorId | String |
|
Yes | - |
| content | String |
|
Yes | - |
| visible | Boolean |
|
Yes | - |
| author | User |
|
Yes | - |
| thread | CommentThread |
|
Yes | - |
| likes | Like[] |
|
Yes | - |
Find zero or one Comment
// Get one Comment
const comment = await prisma.comment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
Find first Comment
// Get one Comment
const comment = await prisma.comment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| orderBy | CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput | No |
| cursor | CommentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentScalarFieldEnum[] | No |
Find zero or more Comment
// Get all Comment
const Comment = await prisma.comment.findMany()
// Get first 10 Comment
const Comment = await prisma.comment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
| orderBy | CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput | No |
| cursor | CommentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommentScalarFieldEnum[] | No |
Create one Comment
// Create one Comment
const Comment = await prisma.comment.create({
data: {
// ... data to create a Comment
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentCreateInput | CommentUncheckedCreateInput | Yes |
Delete one Comment
// Delete one Comment
const Comment = await prisma.comment.delete({
where: {
// ... filter to delete one Comment
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
Update one Comment
// Update one Comment
const comment = await prisma.comment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpdateInput | CommentUncheckedUpdateInput | Yes |
| where | CommentWhereUniqueInput | Yes |
Delete zero or more Comment
// Delete a few Comment
const { count } = await prisma.comment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereInput | No |
Update zero or one Comment
const { count } = await prisma.comment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyInput | Yes |
| where | CommentWhereInput | No |
Create or update one Comment
// Update or create a Comment
const comment = await prisma.comment.upsert({
create: {
// ... data to create a Comment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Comment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CommentWhereUniqueInput | Yes |
| create | CommentCreateInput | CommentUncheckedCreateInput | Yes |
| update | CommentUpdateInput | CommentUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| ownerId | String |
|
Yes | - |
| entity | Entity |
|
Yes | - |
| galleryId | String? |
|
No | - |
| threadId | String? |
|
No | - |
| gallery | Gallery? |
|
No | - |
| owner | User |
|
Yes | - |
| thread | CommentThread? |
|
No | - |
| users | CommuneUser[] |
|
Yes | - |
Find zero or one Commune
// Get one Commune
const commune = await prisma.commune.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneWhereUniqueInput | Yes |
Find first Commune
// Get one Commune
const commune = await prisma.commune.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneWhereInput | No |
| orderBy | CommuneOrderByWithRelationInput[] | CommuneOrderByWithRelationInput | No |
| cursor | CommuneWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommuneScalarFieldEnum[] | No |
Find zero or more Commune
// Get all Commune
const Commune = await prisma.commune.findMany()
// Get first 10 Commune
const Commune = await prisma.commune.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CommuneWhereInput | No |
| orderBy | CommuneOrderByWithRelationInput[] | CommuneOrderByWithRelationInput | No |
| cursor | CommuneWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommuneScalarFieldEnum[] | No |
Create one Commune
// Create one Commune
const Commune = await prisma.commune.create({
data: {
// ... data to create a Commune
}
})
| Name | Type | Required |
|---|---|---|
| data | CommuneCreateInput | CommuneUncheckedCreateInput | Yes |
Delete one Commune
// Delete one Commune
const Commune = await prisma.commune.delete({
where: {
// ... filter to delete one Commune
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneWhereUniqueInput | Yes |
Update one Commune
// Update one Commune
const commune = await prisma.commune.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommuneUpdateInput | CommuneUncheckedUpdateInput | Yes |
| where | CommuneWhereUniqueInput | Yes |
Delete zero or more Commune
// Delete a few Commune
const { count } = await prisma.commune.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneWhereInput | No |
Update zero or one Commune
const { count } = await prisma.commune.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommuneUpdateManyMutationInput | CommuneUncheckedUpdateManyInput | Yes |
| where | CommuneWhereInput | No |
Create or update one Commune
// Update or create a Commune
const commune = await prisma.commune.upsert({
create: {
// ... data to create a Commune
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Commune we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneWhereUniqueInput | Yes |
| create | CommuneCreateInput | CommuneUncheckedCreateInput | Yes |
| update | CommuneUpdateInput | CommuneUncheckedUpdateInput | Yes |
Find zero or one CommuneUser
// Get one CommuneUser
const communeUser = await prisma.communeUser.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneUserWhereUniqueInput | Yes |
Find first CommuneUser
// Get one CommuneUser
const communeUser = await prisma.communeUser.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneUserWhereInput | No |
| orderBy | CommuneUserOrderByWithRelationInput[] | CommuneUserOrderByWithRelationInput | No |
| cursor | CommuneUserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommuneUserScalarFieldEnum[] | No |
Find zero or more CommuneUser
// Get all CommuneUser
const CommuneUser = await prisma.communeUser.findMany()
// Get first 10 CommuneUser
const CommuneUser = await prisma.communeUser.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CommuneUserWhereInput | No |
| orderBy | CommuneUserOrderByWithRelationInput[] | CommuneUserOrderByWithRelationInput | No |
| cursor | CommuneUserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CommuneUserScalarFieldEnum[] | No |
Create one CommuneUser
// Create one CommuneUser
const CommuneUser = await prisma.communeUser.create({
data: {
// ... data to create a CommuneUser
}
})
| Name | Type | Required |
|---|---|---|
| data | CommuneUserCreateInput | CommuneUserUncheckedCreateInput | Yes |
Delete one CommuneUser
// Delete one CommuneUser
const CommuneUser = await prisma.communeUser.delete({
where: {
// ... filter to delete one CommuneUser
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneUserWhereUniqueInput | Yes |
Update one CommuneUser
// Update one CommuneUser
const communeUser = await prisma.communeUser.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommuneUserUpdateInput | CommuneUserUncheckedUpdateInput | Yes |
| where | CommuneUserWhereUniqueInput | Yes |
Delete zero or more CommuneUser
// Delete a few CommuneUser
const { count } = await prisma.communeUser.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneUserWhereInput | No |
Update zero or one CommuneUser
const { count } = await prisma.communeUser.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CommuneUserUpdateManyMutationInput | CommuneUserUncheckedUpdateManyInput | Yes |
| where | CommuneUserWhereInput | No |
Create or update one CommuneUser
// Update or create a CommuneUser
const communeUser = await prisma.communeUser.upsert({
create: {
// ... data to create a CommuneUser
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CommuneUser we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CommuneUserWhereUniqueInput | Yes |
| create | CommuneUserCreateInput | CommuneUserUncheckedCreateInput | Yes |
| update | CommuneUserUpdateInput | CommuneUserUncheckedUpdateInput | Yes |
Find zero or one Membership
// Get one Membership
const membership = await prisma.membership.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MembershipWhereUniqueInput | Yes |
Find first Membership
// Get one Membership
const membership = await prisma.membership.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MembershipWhereInput | No |
| orderBy | MembershipOrderByWithRelationInput[] | MembershipOrderByWithRelationInput | No |
| cursor | MembershipWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MembershipScalarFieldEnum[] | No |
Find zero or more Membership
// Get all Membership
const Membership = await prisma.membership.findMany()
// Get first 10 Membership
const Membership = await prisma.membership.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | MembershipWhereInput | No |
| orderBy | MembershipOrderByWithRelationInput[] | MembershipOrderByWithRelationInput | No |
| cursor | MembershipWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MembershipScalarFieldEnum[] | No |
Create one Membership
// Create one Membership
const Membership = await prisma.membership.create({
data: {
// ... data to create a Membership
}
})
| Name | Type | Required |
|---|---|---|
| data | MembershipCreateInput | MembershipUncheckedCreateInput | Yes |
Delete one Membership
// Delete one Membership
const Membership = await prisma.membership.delete({
where: {
// ... filter to delete one Membership
}
})
| Name | Type | Required |
|---|---|---|
| where | MembershipWhereUniqueInput | Yes |
Update one Membership
// Update one Membership
const membership = await prisma.membership.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MembershipUpdateInput | MembershipUncheckedUpdateInput | Yes |
| where | MembershipWhereUniqueInput | Yes |
Delete zero or more Membership
// Delete a few Membership
const { count } = await prisma.membership.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MembershipWhereInput | No |
Update zero or one Membership
const { count } = await prisma.membership.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MembershipUpdateManyMutationInput | MembershipUncheckedUpdateManyInput | Yes |
| where | MembershipWhereInput | No |
Create or update one Membership
// Update or create a Membership
const membership = await prisma.membership.upsert({
create: {
// ... data to create a Membership
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Membership we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | MembershipWhereUniqueInput | Yes |
| create | MembershipCreateInput | MembershipUncheckedCreateInput | Yes |
| update | MembershipUpdateInput | MembershipUncheckedUpdateInput | Yes |
Find zero or one Genre
// Get one Genre
const genre = await prisma.genre.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GenreWhereUniqueInput | Yes |
Find first Genre
// Get one Genre
const genre = await prisma.genre.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GenreWhereInput | No |
| orderBy | GenreOrderByWithRelationInput[] | GenreOrderByWithRelationInput | No |
| cursor | GenreWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GenreScalarFieldEnum[] | No |
Find zero or more Genre
// Get all Genre
const Genre = await prisma.genre.findMany()
// Get first 10 Genre
const Genre = await prisma.genre.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | GenreWhereInput | No |
| orderBy | GenreOrderByWithRelationInput[] | GenreOrderByWithRelationInput | No |
| cursor | GenreWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | GenreScalarFieldEnum[] | No |
Create one Genre
// Create one Genre
const Genre = await prisma.genre.create({
data: {
// ... data to create a Genre
}
})
| Name | Type | Required |
|---|---|---|
| data | GenreCreateInput | GenreUncheckedCreateInput | Yes |
Delete one Genre
// Delete one Genre
const Genre = await prisma.genre.delete({
where: {
// ... filter to delete one Genre
}
})
| Name | Type | Required |
|---|---|---|
| where | GenreWhereUniqueInput | Yes |
Update one Genre
// Update one Genre
const genre = await prisma.genre.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GenreUpdateInput | GenreUncheckedUpdateInput | Yes |
| where | GenreWhereUniqueInput | Yes |
Delete zero or more Genre
// Delete a few Genre
const { count } = await prisma.genre.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | GenreWhereInput | No |
Update zero or one Genre
const { count } = await prisma.genre.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | GenreUpdateManyMutationInput | GenreUncheckedUpdateManyInput | Yes |
| where | GenreWhereInput | No |
Create or update one Genre
// Update or create a Genre
const genre = await prisma.genre.upsert({
create: {
// ... data to create a Genre
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Genre we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | GenreWhereUniqueInput | Yes |
| create | GenreCreateInput | GenreUncheckedCreateInput | Yes |
| update | GenreUpdateInput | GenreUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| url | String |
|
Yes | - |
| genreId | String |
|
Yes | - |
| genre | Genre |
|
Yes | - |
Find zero or one Covers
// Get one Covers
const covers = await prisma.covers.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CoversWhereUniqueInput | Yes |
Find first Covers
// Get one Covers
const covers = await prisma.covers.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CoversWhereInput | No |
| orderBy | CoversOrderByWithRelationInput[] | CoversOrderByWithRelationInput | No |
| cursor | CoversWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CoversScalarFieldEnum[] | No |
Find zero or more Covers
// Get all Covers
const Covers = await prisma.covers.findMany()
// Get first 10 Covers
const Covers = await prisma.covers.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CoversWhereInput | No |
| orderBy | CoversOrderByWithRelationInput[] | CoversOrderByWithRelationInput | No |
| cursor | CoversWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CoversScalarFieldEnum[] | No |
Create one Covers
// Create one Covers
const Covers = await prisma.covers.create({
data: {
// ... data to create a Covers
}
})
| Name | Type | Required |
|---|---|---|
| data | CoversCreateInput | CoversUncheckedCreateInput | Yes |
Delete one Covers
// Delete one Covers
const Covers = await prisma.covers.delete({
where: {
// ... filter to delete one Covers
}
})
| Name | Type | Required |
|---|---|---|
| where | CoversWhereUniqueInput | Yes |
Update one Covers
// Update one Covers
const covers = await prisma.covers.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CoversUpdateInput | CoversUncheckedUpdateInput | Yes |
| where | CoversWhereUniqueInput | Yes |
Delete zero or more Covers
// Delete a few Covers
const { count } = await prisma.covers.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CoversWhereInput | No |
Update zero or one Covers
const { count } = await prisma.covers.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CoversUpdateManyMutationInput | CoversUncheckedUpdateManyInput | Yes |
| where | CoversWhereInput | No |
Create or update one Covers
// Update or create a Covers
const covers = await prisma.covers.upsert({
create: {
// ... data to create a Covers
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Covers we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CoversWhereUniqueInput | Yes |
| create | CoversCreateInput | CoversUncheckedCreateInput | Yes |
| update | CoversUpdateInput | CoversUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| title | String |
|
Yes | - |
| description | String |
|
Yes | - |
| books | Book[] |
|
Yes | - |
Find zero or one BookCategory
// Get one BookCategory
const bookCategory = await prisma.bookCategory.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookCategoryWhereUniqueInput | Yes |
Find first BookCategory
// Get one BookCategory
const bookCategory = await prisma.bookCategory.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookCategoryWhereInput | No |
| orderBy | BookCategoryOrderByWithRelationInput[] | BookCategoryOrderByWithRelationInput | No |
| cursor | BookCategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BookCategoryScalarFieldEnum[] | No |
Find zero or more BookCategory
// Get all BookCategory
const BookCategory = await prisma.bookCategory.findMany()
// Get first 10 BookCategory
const BookCategory = await prisma.bookCategory.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BookCategoryWhereInput | No |
| orderBy | BookCategoryOrderByWithRelationInput[] | BookCategoryOrderByWithRelationInput | No |
| cursor | BookCategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BookCategoryScalarFieldEnum[] | No |
Create one BookCategory
// Create one BookCategory
const BookCategory = await prisma.bookCategory.create({
data: {
// ... data to create a BookCategory
}
})
| Name | Type | Required |
|---|---|---|
| data | BookCategoryCreateInput | BookCategoryUncheckedCreateInput | Yes |
Delete one BookCategory
// Delete one BookCategory
const BookCategory = await prisma.bookCategory.delete({
where: {
// ... filter to delete one BookCategory
}
})
| Name | Type | Required |
|---|---|---|
| where | BookCategoryWhereUniqueInput | Yes |
Update one BookCategory
// Update one BookCategory
const bookCategory = await prisma.bookCategory.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BookCategoryUpdateInput | BookCategoryUncheckedUpdateInput | Yes |
| where | BookCategoryWhereUniqueInput | Yes |
Delete zero or more BookCategory
// Delete a few BookCategory
const { count } = await prisma.bookCategory.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookCategoryWhereInput | No |
Update zero or one BookCategory
const { count } = await prisma.bookCategory.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BookCategoryUpdateManyMutationInput | BookCategoryUncheckedUpdateManyInput | Yes |
| where | BookCategoryWhereInput | No |
Create or update one BookCategory
// Update or create a BookCategory
const bookCategory = await prisma.bookCategory.upsert({
create: {
// ... data to create a BookCategory
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BookCategory we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BookCategoryWhereUniqueInput | Yes |
| create | BookCategoryCreateInput | BookCategoryUncheckedCreateInput | Yes |
| update | BookCategoryUpdateInput | BookCategoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| active | Boolean |
|
Yes | - |
| status | BookStatus? |
|
No | - |
| prospect | Boolean |
|
Yes | - |
| title | String |
|
Yes | - |
| cover | String |
|
Yes | - |
| genreId | String |
|
Yes | - |
| genre | Genre |
|
Yes | - |
| categories | BookCategory[] |
|
Yes | - |
| hook | String? |
|
No | - |
| synopsis | String? |
|
No | - |
| back | String? |
|
No | - |
| words | Int |
|
Yes | - |
| authors | User[] |
|
Yes | - |
| chapters | Chapter[] |
|
Yes | - |
| characters | Character[] |
|
Yes | - |
| galleryId | String? |
|
No | - |
| gallery | Gallery? |
|
No | - |
| fans | Follow[] |
|
Yes | - |
| likes | Like[] |
|
Yes | - |
Find zero or one Book
// Get one Book
const book = await prisma.book.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookWhereUniqueInput | Yes |
Find first Book
// Get one Book
const book = await prisma.book.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookWhereInput | No |
| orderBy | BookOrderByWithRelationInput[] | BookOrderByWithRelationInput | No |
| cursor | BookWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BookScalarFieldEnum[] | No |
Find zero or more Book
// Get all Book
const Book = await prisma.book.findMany()
// Get first 10 Book
const Book = await prisma.book.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BookWhereInput | No |
| orderBy | BookOrderByWithRelationInput[] | BookOrderByWithRelationInput | No |
| cursor | BookWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BookScalarFieldEnum[] | No |
Create one Book
// Create one Book
const Book = await prisma.book.create({
data: {
// ... data to create a Book
}
})
| Name | Type | Required |
|---|---|---|
| data | BookCreateInput | BookUncheckedCreateInput | Yes |
Delete one Book
// Delete one Book
const Book = await prisma.book.delete({
where: {
// ... filter to delete one Book
}
})
| Name | Type | Required |
|---|---|---|
| where | BookWhereUniqueInput | Yes |
Update one Book
// Update one Book
const book = await prisma.book.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BookUpdateInput | BookUncheckedUpdateInput | Yes |
| where | BookWhereUniqueInput | Yes |
Delete zero or more Book
// Delete a few Book
const { count } = await prisma.book.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookWhereInput | No |
Update zero or one Book
const { count } = await prisma.book.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BookUpdateManyMutationInput | BookUncheckedUpdateManyInput | Yes |
| where | BookWhereInput | No |
Create or update one Book
// Update or create a Book
const book = await prisma.book.upsert({
create: {
// ... data to create a Book
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Book we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BookWhereUniqueInput | Yes |
| create | BookCreateInput | BookUncheckedCreateInput | Yes |
| update | BookUpdateInput | BookUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| active | Boolean |
|
Yes | - |
| name | String |
|
Yes | - |
| familyName | String |
|
Yes | - |
| givenName | String |
|
Yes | - |
| middleName | String |
|
Yes | - |
| thumbnail | String |
|
Yes | - |
| age | String |
|
Yes | - |
| role | String |
|
Yes | - |
| description | String |
|
Yes | - |
| backstory | String |
|
Yes | - |
| title | String |
|
Yes | - |
| archetype | String |
|
Yes | - |
| likes | Like[] |
|
Yes | - |
| fans | Follow[] |
|
Yes | - |
| books | Book[] |
|
Yes | - |
| chapters | Chapter[] |
|
Yes | - |
| galleryId | String? |
|
No | - |
| gallery | Gallery? |
|
No | - |
Find zero or one Character
// Get one Character
const character = await prisma.character.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CharacterWhereUniqueInput | Yes |
Find first Character
// Get one Character
const character = await prisma.character.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CharacterWhereInput | No |
| orderBy | CharacterOrderByWithRelationInput[] | CharacterOrderByWithRelationInput | No |
| cursor | CharacterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CharacterScalarFieldEnum[] | No |
Find zero or more Character
// Get all Character
const Character = await prisma.character.findMany()
// Get first 10 Character
const Character = await prisma.character.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CharacterWhereInput | No |
| orderBy | CharacterOrderByWithRelationInput[] | CharacterOrderByWithRelationInput | No |
| cursor | CharacterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CharacterScalarFieldEnum[] | No |
Create one Character
// Create one Character
const Character = await prisma.character.create({
data: {
// ... data to create a Character
}
})
| Name | Type | Required |
|---|---|---|
| data | CharacterCreateInput | CharacterUncheckedCreateInput | Yes |
Delete one Character
// Delete one Character
const Character = await prisma.character.delete({
where: {
// ... filter to delete one Character
}
})
| Name | Type | Required |
|---|---|---|
| where | CharacterWhereUniqueInput | Yes |
Update one Character
// Update one Character
const character = await prisma.character.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CharacterUpdateInput | CharacterUncheckedUpdateInput | Yes |
| where | CharacterWhereUniqueInput | Yes |
Delete zero or more Character
// Delete a few Character
const { count } = await prisma.character.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CharacterWhereInput | No |
Update zero or one Character
const { count } = await prisma.character.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CharacterUpdateManyMutationInput | CharacterUncheckedUpdateManyInput | Yes |
| where | CharacterWhereInput | No |
Create or update one Character
// Update or create a Character
const character = await prisma.character.upsert({
create: {
// ... data to create a Character
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Character we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CharacterWhereUniqueInput | Yes |
| create | CharacterCreateInput | CharacterUncheckedCreateInput | Yes |
| update | CharacterUpdateInput | CharacterUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| active | Boolean |
|
Yes | - |
| content | String |
|
Yes | - |
| words | Int |
|
Yes | - |
| characters | Character[] |
|
Yes | - |
| bookId | String |
|
Yes | - |
| book | Book |
|
Yes | - |
| galleryId | String? |
|
No | - |
| gallery | Gallery? |
|
No | - |
Find zero or one Chapter
// Get one Chapter
const chapter = await prisma.chapter.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChapterWhereUniqueInput | Yes |
Find first Chapter
// Get one Chapter
const chapter = await prisma.chapter.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChapterWhereInput | No |
| orderBy | ChapterOrderByWithRelationInput[] | ChapterOrderByWithRelationInput | No |
| cursor | ChapterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChapterScalarFieldEnum[] | No |
Find zero or more Chapter
// Get all Chapter
const Chapter = await prisma.chapter.findMany()
// Get first 10 Chapter
const Chapter = await prisma.chapter.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ChapterWhereInput | No |
| orderBy | ChapterOrderByWithRelationInput[] | ChapterOrderByWithRelationInput | No |
| cursor | ChapterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ChapterScalarFieldEnum[] | No |
Create one Chapter
// Create one Chapter
const Chapter = await prisma.chapter.create({
data: {
// ... data to create a Chapter
}
})
| Name | Type | Required |
|---|---|---|
| data | ChapterCreateInput | ChapterUncheckedCreateInput | Yes |
Delete one Chapter
// Delete one Chapter
const Chapter = await prisma.chapter.delete({
where: {
// ... filter to delete one Chapter
}
})
| Name | Type | Required |
|---|---|---|
| where | ChapterWhereUniqueInput | Yes |
Update one Chapter
// Update one Chapter
const chapter = await prisma.chapter.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChapterUpdateInput | ChapterUncheckedUpdateInput | Yes |
| where | ChapterWhereUniqueInput | Yes |
Delete zero or more Chapter
// Delete a few Chapter
const { count } = await prisma.chapter.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ChapterWhereInput | No |
Update zero or one Chapter
const { count } = await prisma.chapter.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ChapterUpdateManyMutationInput | ChapterUncheckedUpdateManyInput | Yes |
| where | ChapterWhereInput | No |
Create or update one Chapter
// Update or create a Chapter
const chapter = await prisma.chapter.upsert({
create: {
// ... data to create a Chapter
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Chapter we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ChapterWhereUniqueInput | Yes |
| create | ChapterCreateInput | ChapterUncheckedCreateInput | Yes |
| update | ChapterUpdateInput | ChapterUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| entity | Entity? |
|
No | - |
| entityId | String? |
|
No | - |
| blockedId | String |
|
Yes | - |
| galleryId | String? |
|
No | - |
| threadId | String? |
|
No | - |
| userId | String |
|
Yes | - |
| blockedUser | User |
|
Yes | - |
| blockedGallery | Gallery? |
|
No | - |
| blockedThread | CommentThread? |
|
No | - |
| user | User |
|
Yes | - |
Find zero or one Block
// Get one Block
const block = await prisma.block.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlockWhereUniqueInput | Yes |
Find first Block
// Get one Block
const block = await prisma.block.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlockWhereInput | No |
| orderBy | BlockOrderByWithRelationInput[] | BlockOrderByWithRelationInput | No |
| cursor | BlockWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlockScalarFieldEnum[] | No |
Find zero or more Block
// Get all Block
const Block = await prisma.block.findMany()
// Get first 10 Block
const Block = await prisma.block.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BlockWhereInput | No |
| orderBy | BlockOrderByWithRelationInput[] | BlockOrderByWithRelationInput | No |
| cursor | BlockWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BlockScalarFieldEnum[] | No |
Create one Block
// Create one Block
const Block = await prisma.block.create({
data: {
// ... data to create a Block
}
})
| Name | Type | Required |
|---|---|---|
| data | BlockCreateInput | BlockUncheckedCreateInput | Yes |
Delete one Block
// Delete one Block
const Block = await prisma.block.delete({
where: {
// ... filter to delete one Block
}
})
| Name | Type | Required |
|---|---|---|
| where | BlockWhereUniqueInput | Yes |
Update one Block
// Update one Block
const block = await prisma.block.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlockUpdateInput | BlockUncheckedUpdateInput | Yes |
| where | BlockWhereUniqueInput | Yes |
Delete zero or more Block
// Delete a few Block
const { count } = await prisma.block.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BlockWhereInput | No |
Update zero or one Block
const { count } = await prisma.block.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BlockUpdateManyMutationInput | BlockUncheckedUpdateManyInput | Yes |
| where | BlockWhereInput | No |
Create or update one Block
// Update or create a Block
const block = await prisma.block.upsert({
create: {
// ... data to create a Block
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Block we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BlockWhereUniqueInput | Yes |
| create | BlockCreateInput | BlockUncheckedCreateInput | Yes |
| update | BlockUpdateInput | BlockUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| identifier | String |
|
Yes | - |
| token | String |
|
Yes | - |
| expires | DateTime |
|
Yes | - |
Find zero or one VerificationToken
// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
Find first VerificationToken
// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
| orderBy | VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput | No |
| cursor | VerificationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationTokenScalarFieldEnum[] | No |
Find zero or more VerificationToken
// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
| orderBy | VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput | No |
| cursor | VerificationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationTokenScalarFieldEnum[] | No |
Create one VerificationToken
// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
data: {
// ... data to create a VerificationToken
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput | Yes |
Delete one VerificationToken
// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
where: {
// ... filter to delete one VerificationToken
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
Update one VerificationToken
// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput | Yes |
| where | VerificationTokenWhereUniqueInput | Yes |
Delete zero or more VerificationToken
// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
Update zero or one VerificationToken
const { count } = await prisma.verificationToken.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput | Yes |
| where | VerificationTokenWhereInput | No |
Create or update one VerificationToken
// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
create: {
// ... data to create a VerificationToken
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the VerificationToken we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
| create | VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput | Yes |
| update | VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| userId | String |
|
Yes | - |
| type | String |
|
Yes | - |
| provider | String |
|
Yes | - |
| providerAccountId | String |
|
Yes | - |
| refresh_token | String? |
|
No | - |
| access_token | String? |
|
No | - |
| expires_at | Int? |
|
No | - |
| token_type | String? |
|
No | - |
| scope | String? |
|
No | - |
| id_token | String? |
|
No | - |
| session_state | String? |
|
No | - |
| oauth_token_secret | String? |
|
No | - |
| oauth_token | String? |
|
No | - |
| user | User |
|
Yes | - |
Find zero or one Account
// Get one Account
const account = await prisma.account.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Find first Account
// Get one Account
const account = await prisma.account.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum[] | No |
Find zero or more Account
// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum[] | No |
Create one Account
// Create one Account
const Account = await prisma.account.create({
data: {
// ... data to create a Account
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountCreateInput | AccountUncheckedCreateInput | Yes |
Delete one Account
// Delete one Account
const Account = await prisma.account.delete({
where: {
// ... filter to delete one Account
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Update one Account
// Update one Account
const account = await prisma.account.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| where | AccountWhereUniqueInput | Yes |
Delete zero or more Account
// Delete a few Account
const { count } = await prisma.account.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
Update zero or one Account
const { count } = await prisma.account.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput | Yes |
| where | AccountWhereInput | No |
Create or update one Account
// Update or create a Account
const account = await prisma.account.upsert({
create: {
// ... data to create a Account
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Account we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
| create | AccountCreateInput | AccountUncheckedCreateInput | Yes |
| update | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| sessionToken | String |
|
Yes | - |
| userId | String |
|
Yes | - |
| expires | DateTime |
|
Yes | - |
| user | User |
|
Yes | - |
Find zero or one Session
// Get one Session
const session = await prisma.session.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Find first Session
// Get one Session
const session = await prisma.session.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum[] | No |
Find zero or more Session
// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum[] | No |
Create one Session
// Create one Session
const Session = await prisma.session.create({
data: {
// ... data to create a Session
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionCreateInput | SessionUncheckedCreateInput | Yes |
Delete one Session
// Delete one Session
const Session = await prisma.session.delete({
where: {
// ... filter to delete one Session
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Update one Session
// Update one Session
const session = await prisma.session.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| where | SessionWhereUniqueInput | Yes |
Delete zero or more Session
// Delete a few Session
const { count } = await prisma.session.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
Update zero or one Session
const { count } = await prisma.session.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput | Yes |
| where | SessionWhereInput | No |
Create or update one Session
// Update or create a Session
const session = await prisma.session.upsert({
create: {
// ... data to create a Session
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Session we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
| create | SessionCreateInput | SessionUncheckedCreateInput | Yes |
| update | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| String | No | |
| membershipId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| membershipId | SortOrder | No |
| _count | UserCountOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| OR | UserScalarWhereWithAggregatesInput[] | No |
| NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| name | StringNullableWithAggregatesFilter | String | Null | Yes |
| StringNullableWithAggregatesFilter | String | Null | Yes | |
| emailVerified | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| image | StringNullableWithAggregatesFilter | String | Null | Yes |
| membershipId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PostWhereInput | PostWhereInput[] | No |
| OR | PostWhereInput[] | No |
| NOT | PostWhereInput | PostWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| content | StringNullableFilter | String | Null | Yes |
| shareId | StringNullableFilter | String | Null | Yes |
| commentId | StringNullableFilter | String | Null | Yes |
| authorId | StringFilter | String | No |
| images | ImageListRelationFilter | No |
| likes | LikeListRelationFilter | No |
| author | UserRelationFilter | UserWhereInput | No |
| news | NewsRelationFilter | NewsWhereInput | Null | Yes |
| comment | PostRelationFilter | PostWhereInput | Null | Yes |
| post_comments | PostListRelationFilter | No |
| shares | ShareListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| content | SortOrder | No |
| shareId | SortOrder | No |
| commentId | SortOrder | No |
| authorId | SortOrder | No |
| images | ImageOrderByRelationAggregateInput | No |
| likes | LikeOrderByRelationAggregateInput | No |
| author | UserOrderByWithRelationInput | No |
| news | NewsOrderByWithRelationInput | No |
| comment | PostOrderByWithRelationInput | No |
| post_comments | PostOrderByRelationAggregateInput | No |
| shares | ShareOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| content | SortOrder | No |
| shareId | SortOrder | No |
| commentId | SortOrder | No |
| authorId | SortOrder | No |
| _count | PostCountOrderByAggregateInput | No |
| _max | PostMaxOrderByAggregateInput | No |
| _min | PostMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] | No |
| OR | PostScalarWhereWithAggregatesInput[] | No |
| NOT | PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| visible | BoolWithAggregatesFilter | Boolean | No |
| content | StringNullableWithAggregatesFilter | String | Null | Yes |
| shareId | StringNullableWithAggregatesFilter | String | Null | Yes |
| commentId | StringNullableWithAggregatesFilter | String | Null | Yes |
| authorId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | NewsWhereInput | NewsWhereInput[] | No |
| OR | NewsWhereInput[] | No |
| NOT | NewsWhereInput | NewsWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| title | StringFilter | String | No |
| banner | StringNullableFilter | String | Null | Yes |
| startDate | DateTimeNullableFilter | DateTime | Null | Yes |
| endDate | DateTimeNullableFilter | DateTime | Null | Yes |
| postId | StringFilter | String | No |
| audience | EnumAudienceFilter | Audience | No |
| views | IntFilter | Int | No |
| priority | IntFilter | Int | No |
| post | PostRelationFilter | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| banner | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| postId | SortOrder | No |
| audience | SortOrder | No |
| views | SortOrder | No |
| priority | SortOrder | No |
| post | PostOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| banner | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| postId | SortOrder | No |
| audience | SortOrder | No |
| views | SortOrder | No |
| priority | SortOrder | No |
| _count | NewsCountOrderByAggregateInput | No |
| _avg | NewsAvgOrderByAggregateInput | No |
| _max | NewsMaxOrderByAggregateInput | No |
| _min | NewsMinOrderByAggregateInput | No |
| _sum | NewsSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | NewsScalarWhereWithAggregatesInput | NewsScalarWhereWithAggregatesInput[] | No |
| OR | NewsScalarWhereWithAggregatesInput[] | No |
| NOT | NewsScalarWhereWithAggregatesInput | NewsScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| visible | BoolWithAggregatesFilter | Boolean | No |
| title | StringWithAggregatesFilter | String | No |
| banner | StringNullableWithAggregatesFilter | String | Null | Yes |
| startDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| endDate | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| postId | StringWithAggregatesFilter | String | No |
| audience | EnumAudienceWithAggregatesFilter | Audience | No |
| views | IntWithAggregatesFilter | Int | No |
| priority | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GalleryWhereInput | GalleryWhereInput[] | No |
| OR | GalleryWhereInput[] | No |
| NOT | GalleryWhereInput | GalleryWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| title | StringNullableFilter | String | Null | Yes |
| description | StringNullableFilter | String | Null | Yes |
| authorId | StringFilter | String | No |
| shareId | StringNullableFilter | String | Null | Yes |
| blocking | BlockListRelationFilter | No |
| commune | CommuneRelationFilter | CommuneWhereInput | Null | Yes |
| author | UserRelationFilter | UserWhereInput | No |
| images | ImageListRelationFilter | No |
| likes | LikeListRelationFilter | No |
| shares | ShareListRelationFilter | No |
| book_gallery | BookRelationFilter | BookWhereInput | Null | Yes |
| character_gallery | CharacterRelationFilter | CharacterWhereInput | Null | Yes |
| chapter_gallery | ChapterRelationFilter | ChapterWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| authorId | SortOrder | No |
| shareId | SortOrder | No |
| blocking | BlockOrderByRelationAggregateInput | No |
| commune | CommuneOrderByWithRelationInput | No |
| author | UserOrderByWithRelationInput | No |
| images | ImageOrderByRelationAggregateInput | No |
| likes | LikeOrderByRelationAggregateInput | No |
| shares | ShareOrderByRelationAggregateInput | No |
| book_gallery | BookOrderByWithRelationInput | No |
| character_gallery | CharacterOrderByWithRelationInput | No |
| chapter_gallery | ChapterOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| authorId | SortOrder | No |
| shareId | SortOrder | No |
| _count | GalleryCountOrderByAggregateInput | No |
| _max | GalleryMaxOrderByAggregateInput | No |
| _min | GalleryMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GalleryScalarWhereWithAggregatesInput | GalleryScalarWhereWithAggregatesInput[] | No |
| OR | GalleryScalarWhereWithAggregatesInput[] | No |
| NOT | GalleryScalarWhereWithAggregatesInput | GalleryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| visible | BoolWithAggregatesFilter | Boolean | No |
| title | StringNullableWithAggregatesFilter | String | Null | Yes |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| authorId | StringWithAggregatesFilter | String | No |
| shareId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ImageWhereInput | ImageWhereInput[] | No |
| OR | ImageWhereInput[] | No |
| NOT | ImageWhereInput | ImageWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| title | StringNullableFilter | String | Null | Yes |
| authorId | StringFilter | String | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| shareId | StringNullableFilter | String | Null | Yes |
| url | StringFilter | String | No |
| postId | StringNullableFilter | String | Null | Yes |
| height | IntNullableFilter | Int | Null | Yes |
| width | IntNullableFilter | Int | Null | Yes |
| author | UserRelationFilter | UserWhereInput | No |
| gallery | GalleryRelationFilter | GalleryWhereInput | Null | Yes |
| post | PostRelationFilter | PostWhereInput | Null | Yes |
| likes | LikeListRelationFilter | No |
| shares | ShareListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| authorId | SortOrder | No |
| galleryId | SortOrder | No |
| shareId | SortOrder | No |
| url | SortOrder | No |
| postId | SortOrder | No |
| height | SortOrder | No |
| width | SortOrder | No |
| author | UserOrderByWithRelationInput | No |
| gallery | GalleryOrderByWithRelationInput | No |
| post | PostOrderByWithRelationInput | No |
| likes | LikeOrderByRelationAggregateInput | No |
| shares | ShareOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| authorId | SortOrder | No |
| galleryId | SortOrder | No |
| shareId | SortOrder | No |
| url | SortOrder | No |
| postId | SortOrder | No |
| height | SortOrder | No |
| width | SortOrder | No |
| _count | ImageCountOrderByAggregateInput | No |
| _avg | ImageAvgOrderByAggregateInput | No |
| _max | ImageMaxOrderByAggregateInput | No |
| _min | ImageMinOrderByAggregateInput | No |
| _sum | ImageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ImageScalarWhereWithAggregatesInput | ImageScalarWhereWithAggregatesInput[] | No |
| OR | ImageScalarWhereWithAggregatesInput[] | No |
| NOT | ImageScalarWhereWithAggregatesInput | ImageScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| visible | BoolWithAggregatesFilter | Boolean | No |
| title | StringNullableWithAggregatesFilter | String | Null | Yes |
| authorId | StringWithAggregatesFilter | String | No |
| galleryId | StringNullableWithAggregatesFilter | String | Null | Yes |
| shareId | StringNullableWithAggregatesFilter | String | Null | Yes |
| url | StringWithAggregatesFilter | String | No |
| postId | StringNullableWithAggregatesFilter | String | Null | Yes |
| height | IntNullableWithAggregatesFilter | Int | Null | Yes |
| width | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | LikeWhereInput | LikeWhereInput[] | No |
| OR | LikeWhereInput[] | No |
| NOT | LikeWhereInput | LikeWhereInput[] | No |
| id | StringFilter | String | No |
| authorId | StringFilter | String | No |
| postId | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| imageId | StringNullableFilter | String | Null | Yes |
| commentId | StringNullableFilter | String | Null | Yes |
| characterId | StringNullableFilter | String | Null | Yes |
| bookId | StringNullableFilter | String | Null | Yes |
| author | UserRelationFilter | UserWhereInput | No |
| comment | CommentRelationFilter | CommentWhereInput | Null | Yes |
| gallery | GalleryRelationFilter | GalleryWhereInput | Null | Yes |
| image | ImageRelationFilter | ImageWhereInput | Null | Yes |
| post | PostRelationFilter | PostWhereInput | Null | Yes |
| character | CharacterRelationFilter | CharacterWhereInput | Null | Yes |
| book | BookRelationFilter | BookWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| commentId | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| author | UserOrderByWithRelationInput | No |
| comment | CommentOrderByWithRelationInput | No |
| gallery | GalleryOrderByWithRelationInput | No |
| image | ImageOrderByWithRelationInput | No |
| post | PostOrderByWithRelationInput | No |
| character | CharacterOrderByWithRelationInput | No |
| book | BookOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| commentId | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| _count | LikeCountOrderByAggregateInput | No |
| _max | LikeMaxOrderByAggregateInput | No |
| _min | LikeMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LikeScalarWhereWithAggregatesInput | LikeScalarWhereWithAggregatesInput[] | No |
| OR | LikeScalarWhereWithAggregatesInput[] | No |
| NOT | LikeScalarWhereWithAggregatesInput | LikeScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| authorId | StringWithAggregatesFilter | String | No |
| postId | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| galleryId | StringNullableWithAggregatesFilter | String | Null | Yes |
| imageId | StringNullableWithAggregatesFilter | String | Null | Yes |
| commentId | StringNullableWithAggregatesFilter | String | Null | Yes |
| characterId | StringNullableWithAggregatesFilter | String | Null | Yes |
| bookId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ShareWhereInput | ShareWhereInput[] | No |
| OR | ShareWhereInput[] | No |
| NOT | ShareWhereInput | ShareWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| authorId | StringFilter | String | No |
| postId | StringNullableFilter | String | Null | Yes |
| galleryId | StringNullableFilter | String | Null | Yes |
| imageId | StringNullableFilter | String | Null | Yes |
| author | UserRelationFilter | UserWhereInput | No |
| gallery | GalleryRelationFilter | GalleryWhereInput | Null | Yes |
| image | ImageRelationFilter | ImageWhereInput | Null | Yes |
| post | PostRelationFilter | PostWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| author | UserOrderByWithRelationInput | No |
| gallery | GalleryOrderByWithRelationInput | No |
| image | ImageOrderByWithRelationInput | No |
| post | PostOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| _count | ShareCountOrderByAggregateInput | No |
| _max | ShareMaxOrderByAggregateInput | No |
| _min | ShareMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShareScalarWhereWithAggregatesInput | ShareScalarWhereWithAggregatesInput[] | No |
| OR | ShareScalarWhereWithAggregatesInput[] | No |
| NOT | ShareScalarWhereWithAggregatesInput | ShareScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| visible | BoolWithAggregatesFilter | Boolean | No |
| authorId | StringWithAggregatesFilter | String | No |
| postId | StringNullableWithAggregatesFilter | String | Null | Yes |
| galleryId | StringNullableWithAggregatesFilter | String | Null | Yes |
| imageId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowWhereInput | FollowWhereInput[] | No |
| OR | FollowWhereInput[] | No |
| NOT | FollowWhereInput | FollowWhereInput[] | No |
| id | StringFilter | String | No |
| followerId | StringFilter | String | No |
| followingId | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| characterId | StringNullableFilter | String | Null | Yes |
| bookId | StringNullableFilter | String | Null | Yes |
| follower | UserRelationFilter | UserWhereInput | No |
| following | UserRelationFilter | UserWhereInput | Null | Yes |
| character | CharacterRelationFilter | CharacterWhereInput | Null | Yes |
| book | BookRelationFilter | BookWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| follower | UserOrderByWithRelationInput | No |
| following | UserOrderByWithRelationInput | No |
| character | CharacterOrderByWithRelationInput | No |
| book | BookOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| _count | FollowCountOrderByAggregateInput | No |
| _max | FollowMaxOrderByAggregateInput | No |
| _min | FollowMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowScalarWhereWithAggregatesInput | FollowScalarWhereWithAggregatesInput[] | No |
| OR | FollowScalarWhereWithAggregatesInput[] | No |
| NOT | FollowScalarWhereWithAggregatesInput | FollowScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| followerId | StringWithAggregatesFilter | String | No |
| followingId | StringNullableWithAggregatesFilter | String | Null | Yes |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| characterId | StringNullableWithAggregatesFilter | String | Null | Yes |
| bookId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | FanWhereInput | FanWhereInput[] | No |
| OR | FanWhereInput[] | No |
| NOT | FanWhereInput | FanWhereInput[] | No |
| id | StringFilter | String | No |
| fanId | StringFilter | String | No |
| fanOfId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| fan | UserRelationFilter | UserWhereInput | No |
| fanOf | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fanId | SortOrder | No |
| fanOfId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| fan | UserOrderByWithRelationInput | No |
| fanOf | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fanId | SortOrder | No |
| fanOfId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| _count | FanCountOrderByAggregateInput | No |
| _max | FanMaxOrderByAggregateInput | No |
| _min | FanMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FanScalarWhereWithAggregatesInput | FanScalarWhereWithAggregatesInput[] | No |
| OR | FanScalarWhereWithAggregatesInput[] | No |
| NOT | FanScalarWhereWithAggregatesInput | FanScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| fanId | StringWithAggregatesFilter | String | No |
| fanOfId | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatRoomWhereInput | ChatRoomWhereInput[] | No |
| OR | ChatRoomWhereInput[] | No |
| NOT | ChatRoomWhereInput | ChatRoomWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| party | StringFilter | String | No |
| messages | ChatMessageListRelationFilter | No |
| users | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| party | SortOrder | No |
| messages | ChatMessageOrderByRelationAggregateInput | No |
| users | UserOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| party | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| party | SortOrder | No |
| _count | ChatRoomCountOrderByAggregateInput | No |
| _max | ChatRoomMaxOrderByAggregateInput | No |
| _min | ChatRoomMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatRoomScalarWhereWithAggregatesInput | ChatRoomScalarWhereWithAggregatesInput[] | No |
| OR | ChatRoomScalarWhereWithAggregatesInput[] | No |
| NOT | ChatRoomScalarWhereWithAggregatesInput | ChatRoomScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| visible | BoolWithAggregatesFilter | Boolean | No |
| party | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageWhereInput | ChatMessageWhereInput[] | No |
| OR | ChatMessageWhereInput[] | No |
| NOT | ChatMessageWhereInput | ChatMessageWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| seen | BoolFilter | Boolean | No |
| chatRoomId | StringFilter | String | No |
| authorId | StringFilter | String | No |
| content | StringFilter | String | No |
| author | UserRelationFilter | UserWhereInput | No |
| chatRoom | ChatRoomRelationFilter | ChatRoomWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| seen | SortOrder | No |
| chatRoomId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| author | UserOrderByWithRelationInput | No |
| chatRoom | ChatRoomOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| seen | SortOrder | No |
| chatRoomId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| _count | ChatMessageCountOrderByAggregateInput | No |
| _max | ChatMessageMaxOrderByAggregateInput | No |
| _min | ChatMessageMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageScalarWhereWithAggregatesInput | ChatMessageScalarWhereWithAggregatesInput[] | No |
| OR | ChatMessageScalarWhereWithAggregatesInput[] | No |
| NOT | ChatMessageScalarWhereWithAggregatesInput | ChatMessageScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| visible | BoolWithAggregatesFilter | Boolean | No |
| seen | BoolWithAggregatesFilter | Boolean | No |
| chatRoomId | StringWithAggregatesFilter | String | No |
| authorId | StringWithAggregatesFilter | String | No |
| content | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentThreadWhereInput | CommentThreadWhereInput[] | No |
| OR | CommentThreadWhereInput[] | No |
| NOT | CommentThreadWhereInput | CommentThreadWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| entity | EnumEntityFilter | Entity | No |
| requiredRole | EnumRoleFilter | Role | No |
| blocked | BlockListRelationFilter | No |
| comments | CommentListRelationFilter | No |
| commune | CommuneRelationFilter | CommuneWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| requiredRole | SortOrder | No |
| blocked | BlockOrderByRelationAggregateInput | No |
| comments | CommentOrderByRelationAggregateInput | No |
| commune | CommuneOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| requiredRole | SortOrder | No |
| _count | CommentThreadCountOrderByAggregateInput | No |
| _max | CommentThreadMaxOrderByAggregateInput | No |
| _min | CommentThreadMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentThreadScalarWhereWithAggregatesInput | CommentThreadScalarWhereWithAggregatesInput[] | No |
| OR | CommentThreadScalarWhereWithAggregatesInput[] | No |
| NOT | CommentThreadScalarWhereWithAggregatesInput | CommentThreadScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| entity | EnumEntityWithAggregatesFilter | Entity | No |
| requiredRole | EnumRoleWithAggregatesFilter | Role | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentWhereInput | CommentWhereInput[] | No |
| OR | CommentWhereInput[] | No |
| NOT | CommentWhereInput | CommentWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| threadType | EnumEntityFilter | Entity | No |
| threadId | StringFilter | String | No |
| authorId | StringFilter | String | No |
| content | StringFilter | String | No |
| visible | BoolFilter | Boolean | No |
| author | UserRelationFilter | UserWhereInput | No |
| thread | CommentThreadRelationFilter | CommentThreadWhereInput | No |
| likes | LikeListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| threadType | SortOrder | No |
| threadId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| visible | SortOrder | No |
| author | UserOrderByWithRelationInput | No |
| thread | CommentThreadOrderByWithRelationInput | No |
| likes | LikeOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| threadType | SortOrder | No |
| threadId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| visible | SortOrder | No |
| _count | CommentCountOrderByAggregateInput | No |
| _max | CommentMaxOrderByAggregateInput | No |
| _min | CommentMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentScalarWhereWithAggregatesInput | CommentScalarWhereWithAggregatesInput[] | No |
| OR | CommentScalarWhereWithAggregatesInput[] | No |
| NOT | CommentScalarWhereWithAggregatesInput | CommentScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| threadType | EnumEntityWithAggregatesFilter | Entity | No |
| threadId | StringWithAggregatesFilter | String | No |
| authorId | StringWithAggregatesFilter | String | No |
| content | StringWithAggregatesFilter | String | No |
| visible | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommuneWhereInput | CommuneWhereInput[] | No |
| OR | CommuneWhereInput[] | No |
| NOT | CommuneWhereInput | CommuneWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| ownerId | StringFilter | String | No |
| entity | EnumEntityFilter | Entity | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| threadId | StringNullableFilter | String | Null | Yes |
| gallery | GalleryRelationFilter | GalleryWhereInput | Null | Yes |
| owner | UserRelationFilter | UserWhereInput | No |
| thread | CommentThreadRelationFilter | CommentThreadWhereInput | Null | Yes |
| users | CommuneUserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| ownerId | SortOrder | No |
| entity | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| gallery | GalleryOrderByWithRelationInput | No |
| owner | UserOrderByWithRelationInput | No |
| thread | CommentThreadOrderByWithRelationInput | No |
| users | CommuneUserOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| galleryId | String | No |
| threadId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| ownerId | SortOrder | No |
| entity | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| _count | CommuneCountOrderByAggregateInput | No |
| _max | CommuneMaxOrderByAggregateInput | No |
| _min | CommuneMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommuneScalarWhereWithAggregatesInput | CommuneScalarWhereWithAggregatesInput[] | No |
| OR | CommuneScalarWhereWithAggregatesInput[] | No |
| NOT | CommuneScalarWhereWithAggregatesInput | CommuneScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| ownerId | StringWithAggregatesFilter | String | No |
| entity | EnumEntityWithAggregatesFilter | Entity | No |
| galleryId | StringNullableWithAggregatesFilter | String | Null | Yes |
| threadId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | CommuneUserWhereInput | CommuneUserWhereInput[] | No |
| OR | CommuneUserWhereInput[] | No |
| NOT | CommuneUserWhereInput | CommuneUserWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| communeId | StringFilter | String | No |
| userId | StringFilter | String | No |
| role | EnumRoleFilter | Role | No |
| commune | CommuneRelationFilter | CommuneWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| communeId | SortOrder | No |
| userId | SortOrder | No |
| role | SortOrder | No |
| commune | CommuneOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| communeId | SortOrder | No |
| userId | SortOrder | No |
| role | SortOrder | No |
| _count | CommuneUserCountOrderByAggregateInput | No |
| _max | CommuneUserMaxOrderByAggregateInput | No |
| _min | CommuneUserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommuneUserScalarWhereWithAggregatesInput | CommuneUserScalarWhereWithAggregatesInput[] | No |
| OR | CommuneUserScalarWhereWithAggregatesInput[] | No |
| NOT | CommuneUserScalarWhereWithAggregatesInput | CommuneUserScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| communeId | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| role | EnumRoleWithAggregatesFilter | Role | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MembershipWhereInput | MembershipWhereInput[] | No |
| OR | MembershipWhereInput[] | No |
| NOT | MembershipWhereInput | MembershipWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| active | BoolFilter | Boolean | No |
| level | EnumAudienceNullableFilter | Audience | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| level | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| level | SortOrder | No |
| _count | MembershipCountOrderByAggregateInput | No |
| _max | MembershipMaxOrderByAggregateInput | No |
| _min | MembershipMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MembershipScalarWhereWithAggregatesInput | MembershipScalarWhereWithAggregatesInput[] | No |
| OR | MembershipScalarWhereWithAggregatesInput[] | No |
| NOT | MembershipScalarWhereWithAggregatesInput | MembershipScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| active | BoolWithAggregatesFilter | Boolean | No |
| level | EnumAudienceNullableWithAggregatesFilter | Audience | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | GenreWhereInput | GenreWhereInput[] | No |
| OR | GenreWhereInput[] | No |
| NOT | GenreWhereInput | GenreWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| title | StringFilter | String | No |
| description | StringFilter | String | No |
| fiction | BoolFilter | Boolean | No |
| books | BookListRelationFilter | No |
| covers | CoversListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| fiction | SortOrder | No |
| books | BookOrderByRelationAggregateInput | No |
| covers | CoversOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| title | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| fiction | SortOrder | No |
| _count | GenreCountOrderByAggregateInput | No |
| _max | GenreMaxOrderByAggregateInput | No |
| _min | GenreMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GenreScalarWhereWithAggregatesInput | GenreScalarWhereWithAggregatesInput[] | No |
| OR | GenreScalarWhereWithAggregatesInput[] | No |
| NOT | GenreScalarWhereWithAggregatesInput | GenreScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| title | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| fiction | BoolWithAggregatesFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CoversWhereInput | CoversWhereInput[] | No |
| OR | CoversWhereInput[] | No |
| NOT | CoversWhereInput | CoversWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| url | StringFilter | String | No |
| genreId | StringFilter | String | No |
| genre | GenreRelationFilter | GenreWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| url | SortOrder | No |
| genreId | SortOrder | No |
| genre | GenreOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| url | SortOrder | No |
| genreId | SortOrder | No |
| _count | CoversCountOrderByAggregateInput | No |
| _max | CoversMaxOrderByAggregateInput | No |
| _min | CoversMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CoversScalarWhereWithAggregatesInput | CoversScalarWhereWithAggregatesInput[] | No |
| OR | CoversScalarWhereWithAggregatesInput[] | No |
| NOT | CoversScalarWhereWithAggregatesInput | CoversScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| url | StringWithAggregatesFilter | String | No |
| genreId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookCategoryWhereInput | BookCategoryWhereInput[] | No |
| OR | BookCategoryWhereInput[] | No |
| NOT | BookCategoryWhereInput | BookCategoryWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| title | StringFilter | String | No |
| description | StringFilter | String | No |
| books | BookListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| books | BookOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| _count | BookCategoryCountOrderByAggregateInput | No |
| _max | BookCategoryMaxOrderByAggregateInput | No |
| _min | BookCategoryMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookCategoryScalarWhereWithAggregatesInput | BookCategoryScalarWhereWithAggregatesInput[] | No |
| OR | BookCategoryScalarWhereWithAggregatesInput[] | No |
| NOT | BookCategoryScalarWhereWithAggregatesInput | BookCategoryScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| title | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookWhereInput | BookWhereInput[] | No |
| OR | BookWhereInput[] | No |
| NOT | BookWhereInput | BookWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| active | BoolFilter | Boolean | No |
| status | EnumBookStatusNullableFilter | BookStatus | Null | Yes |
| prospect | BoolFilter | Boolean | No |
| title | StringFilter | String | No |
| cover | StringFilter | String | No |
| genreId | StringFilter | String | No |
| hook | StringNullableFilter | String | Null | Yes |
| synopsis | StringNullableFilter | String | Null | Yes |
| back | StringNullableFilter | String | Null | Yes |
| words | IntFilter | Int | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| genre | GenreRelationFilter | GenreWhereInput | No |
| categories | BookCategoryListRelationFilter | No |
| authors | UserListRelationFilter | No |
| chapters | ChapterListRelationFilter | No |
| characters | CharacterListRelationFilter | No |
| gallery | GalleryRelationFilter | GalleryWhereInput | Null | Yes |
| fans | FollowListRelationFilter | No |
| likes | LikeListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| status | SortOrder | No |
| prospect | SortOrder | No |
| title | SortOrder | No |
| cover | SortOrder | No |
| genreId | SortOrder | No |
| hook | SortOrder | No |
| synopsis | SortOrder | No |
| back | SortOrder | No |
| words | SortOrder | No |
| galleryId | SortOrder | No |
| genre | GenreOrderByWithRelationInput | No |
| categories | BookCategoryOrderByRelationAggregateInput | No |
| authors | UserOrderByRelationAggregateInput | No |
| chapters | ChapterOrderByRelationAggregateInput | No |
| characters | CharacterOrderByRelationAggregateInput | No |
| gallery | GalleryOrderByWithRelationInput | No |
| fans | FollowOrderByRelationAggregateInput | No |
| likes | LikeOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| status | SortOrder | No |
| prospect | SortOrder | No |
| title | SortOrder | No |
| cover | SortOrder | No |
| genreId | SortOrder | No |
| hook | SortOrder | No |
| synopsis | SortOrder | No |
| back | SortOrder | No |
| words | SortOrder | No |
| galleryId | SortOrder | No |
| _count | BookCountOrderByAggregateInput | No |
| _avg | BookAvgOrderByAggregateInput | No |
| _max | BookMaxOrderByAggregateInput | No |
| _min | BookMinOrderByAggregateInput | No |
| _sum | BookSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookScalarWhereWithAggregatesInput | BookScalarWhereWithAggregatesInput[] | No |
| OR | BookScalarWhereWithAggregatesInput[] | No |
| NOT | BookScalarWhereWithAggregatesInput | BookScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| active | BoolWithAggregatesFilter | Boolean | No |
| status | EnumBookStatusNullableWithAggregatesFilter | BookStatus | Null | Yes |
| prospect | BoolWithAggregatesFilter | Boolean | No |
| title | StringWithAggregatesFilter | String | No |
| cover | StringWithAggregatesFilter | String | No |
| genreId | StringWithAggregatesFilter | String | No |
| hook | StringNullableWithAggregatesFilter | String | Null | Yes |
| synopsis | StringNullableWithAggregatesFilter | String | Null | Yes |
| back | StringNullableWithAggregatesFilter | String | Null | Yes |
| words | IntWithAggregatesFilter | Int | No |
| galleryId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | CharacterWhereInput | CharacterWhereInput[] | No |
| OR | CharacterWhereInput[] | No |
| NOT | CharacterWhereInput | CharacterWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| active | BoolFilter | Boolean | No |
| name | StringFilter | String | No |
| familyName | StringFilter | String | No |
| givenName | StringFilter | String | No |
| middleName | StringFilter | String | No |
| thumbnail | StringFilter | String | No |
| age | StringFilter | String | No |
| role | StringFilter | String | No |
| description | StringFilter | String | No |
| backstory | StringFilter | String | No |
| title | StringFilter | String | No |
| archetype | StringFilter | String | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| likes | LikeListRelationFilter | No |
| fans | FollowListRelationFilter | No |
| books | BookListRelationFilter | No |
| chapters | ChapterListRelationFilter | No |
| gallery | GalleryRelationFilter | GalleryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| name | SortOrder | No |
| familyName | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| thumbnail | SortOrder | No |
| age | SortOrder | No |
| role | SortOrder | No |
| description | SortOrder | No |
| backstory | SortOrder | No |
| title | SortOrder | No |
| archetype | SortOrder | No |
| galleryId | SortOrder | No |
| likes | LikeOrderByRelationAggregateInput | No |
| fans | FollowOrderByRelationAggregateInput | No |
| books | BookOrderByRelationAggregateInput | No |
| chapters | ChapterOrderByRelationAggregateInput | No |
| gallery | GalleryOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| name | SortOrder | No |
| familyName | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| thumbnail | SortOrder | No |
| age | SortOrder | No |
| role | SortOrder | No |
| description | SortOrder | No |
| backstory | SortOrder | No |
| title | SortOrder | No |
| archetype | SortOrder | No |
| galleryId | SortOrder | No |
| _count | CharacterCountOrderByAggregateInput | No |
| _max | CharacterMaxOrderByAggregateInput | No |
| _min | CharacterMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChapterWhereInput | ChapterWhereInput[] | No |
| OR | ChapterWhereInput[] | No |
| NOT | ChapterWhereInput | ChapterWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| active | BoolFilter | Boolean | No |
| content | StringFilter | String | No |
| words | IntFilter | Int | No |
| bookId | StringFilter | String | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| characters | CharacterListRelationFilter | No |
| book | BookRelationFilter | BookWhereInput | No |
| gallery | GalleryRelationFilter | GalleryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| content | SortOrder | No |
| words | SortOrder | No |
| bookId | SortOrder | No |
| galleryId | SortOrder | No |
| characters | CharacterOrderByRelationAggregateInput | No |
| book | BookOrderByWithRelationInput | No |
| gallery | GalleryOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| content | SortOrder | No |
| words | SortOrder | No |
| bookId | SortOrder | No |
| galleryId | SortOrder | No |
| _count | ChapterCountOrderByAggregateInput | No |
| _avg | ChapterAvgOrderByAggregateInput | No |
| _max | ChapterMaxOrderByAggregateInput | No |
| _min | ChapterMinOrderByAggregateInput | No |
| _sum | ChapterSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChapterScalarWhereWithAggregatesInput | ChapterScalarWhereWithAggregatesInput[] | No |
| OR | ChapterScalarWhereWithAggregatesInput[] | No |
| NOT | ChapterScalarWhereWithAggregatesInput | ChapterScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| active | BoolWithAggregatesFilter | Boolean | No |
| content | StringWithAggregatesFilter | String | No |
| words | IntWithAggregatesFilter | Int | No |
| bookId | StringWithAggregatesFilter | String | No |
| galleryId | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | BlockWhereInput | BlockWhereInput[] | No |
| OR | BlockWhereInput[] | No |
| NOT | BlockWhereInput | BlockWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| entity | EnumEntityNullableFilter | Entity | Null | Yes |
| entityId | StringNullableFilter | String | Null | Yes |
| blockedId | StringFilter | String | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| threadId | StringNullableFilter | String | Null | Yes |
| userId | StringFilter | String | No |
| blockedUser | UserRelationFilter | UserWhereInput | No |
| blockedGallery | GalleryRelationFilter | GalleryWhereInput | Null | Yes |
| blockedThread | CommentThreadRelationFilter | CommentThreadWhereInput | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| entityId | SortOrder | No |
| blockedId | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| userId | SortOrder | No |
| blockedUser | UserOrderByWithRelationInput | No |
| blockedGallery | GalleryOrderByWithRelationInput | No |
| blockedThread | CommentThreadOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| entityId | SortOrder | No |
| blockedId | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| userId | SortOrder | No |
| _count | BlockCountOrderByAggregateInput | No |
| _max | BlockMaxOrderByAggregateInput | No |
| _min | BlockMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlockScalarWhereWithAggregatesInput | BlockScalarWhereWithAggregatesInput[] | No |
| OR | BlockScalarWhereWithAggregatesInput[] | No |
| NOT | BlockScalarWhereWithAggregatesInput | BlockScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| entity | EnumEntityNullableWithAggregatesFilter | Entity | Null | Yes |
| entityId | StringNullableWithAggregatesFilter | String | Null | Yes |
| blockedId | StringWithAggregatesFilter | String | No |
| galleryId | StringNullableWithAggregatesFilter | String | Null | Yes |
| threadId | StringNullableWithAggregatesFilter | String | Null | Yes |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| OR | VerificationTokenWhereInput[] | No |
| NOT | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| identifier | StringFilter | String | No |
| token | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | No |
| identifier_token | VerificationTokenIdentifierTokenCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| _count | VerificationTokenCountOrderByAggregateInput | No |
| _max | VerificationTokenMaxOrderByAggregateInput | No |
| _min | VerificationTokenMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationTokenScalarWhereWithAggregatesInput | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| OR | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| NOT | VerificationTokenScalarWhereWithAggregatesInput | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| identifier | StringWithAggregatesFilter | String | No |
| token | StringWithAggregatesFilter | String | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| id | StringFilter | String | No |
| userId | StringFilter | String | No |
| type | StringFilter | String | No |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| oauth_token_secret | StringNullableFilter | String | Null | Yes |
| oauth_token | StringNullableFilter | String | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| oauth_token | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_providerAccountId | AccountProviderProviderAccountIdCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| oauth_token | SortOrder | No |
| _count | AccountCountOrderByAggregateInput | No |
| _avg | AccountAvgOrderByAggregateInput | No |
| _max | AccountMaxOrderByAggregateInput | No |
| _min | AccountMinOrderByAggregateInput | No |
| _sum | AccountSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| id | StringFilter | String | No |
| sessionToken | StringFilter | String | No |
| userId | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| _count | SessionCountOrderByAggregateInput | No |
| _max | SessionMaxOrderByAggregateInput | No |
| _min | SessionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| OR | SessionScalarWhereWithAggregatesInput[] | No |
| NOT | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| sessionToken | StringWithAggregatesFilter | String | No |
| userId | StringWithAggregatesFilter | String | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | Null | Yes |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| image | String | Null | Yes |
| membershipId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| membershipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| images | ImageCreateNestedManyWithoutPostInput | No |
| likes | LikeCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| news | NewsCreateNestedOneWithoutPostInput | No |
| comment | PostCreateNestedOneWithoutPost_commentsInput | No |
| post_comments | PostCreateNestedManyWithoutCommentInput | No |
| shares | ShareCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| authorId | String | No |
| images | ImageUncheckedCreateNestedManyWithoutPostInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutPostInput | No |
| news | NewsUncheckedCreateNestedOneWithoutPostInput | No |
| post_comments | PostUncheckedCreateNestedManyWithoutCommentInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| images | ImageUpdateManyWithoutPostNestedInput | No |
| likes | LikeUpdateManyWithoutPostNestedInput | No |
| author | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| news | NewsUpdateOneWithoutPostNestedInput | No |
| comment | PostUpdateOneWithoutPost_commentsNestedInput | No |
| post_comments | PostUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| images | ImageUncheckedUpdateManyWithoutPostNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutPostNestedInput | No |
| news | NewsUncheckedUpdateOneWithoutPostNestedInput | No |
| post_comments | PostUncheckedUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| banner | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| endDate | DateTime | Null | Yes |
| audience | Audience | No |
| views | Int | No |
| priority | Int | No |
| post | PostCreateNestedOneWithoutNewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| banner | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| endDate | DateTime | Null | Yes |
| postId | String | No |
| audience | Audience | No |
| views | Int | No |
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| audience | Audience | EnumAudienceFieldUpdateOperationsInput | No |
| views | Int | IntFieldUpdateOperationsInput | No |
| priority | Int | IntFieldUpdateOperationsInput | No |
| post | PostUpdateOneRequiredWithoutNewsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| postId | String | StringFieldUpdateOperationsInput | No |
| audience | Audience | EnumAudienceFieldUpdateOperationsInput | No |
| views | Int | IntFieldUpdateOperationsInput | No |
| priority | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| banner | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| endDate | DateTime | Null | Yes |
| postId | String | No |
| audience | Audience | No |
| views | Int | No |
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| audience | Audience | EnumAudienceFieldUpdateOperationsInput | No |
| views | Int | IntFieldUpdateOperationsInput | No |
| priority | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| postId | String | StringFieldUpdateOperationsInput | No |
| audience | Audience | EnumAudienceFieldUpdateOperationsInput | No |
| views | Int | IntFieldUpdateOperationsInput | No |
| priority | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| author | UserCreateNestedOneWithoutImagesInput | No |
| gallery | GalleryCreateNestedOneWithoutImagesInput | No |
| post | PostCreateNestedOneWithoutImagesInput | No |
| likes | LikeCreateNestedManyWithoutImageInput | No |
| shares | ShareCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| authorId | String | No |
| galleryId | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| postId | String | Null | Yes |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutImageInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| author | UserUpdateOneRequiredWithoutImagesNestedInput | No |
| gallery | GalleryUpdateOneWithoutImagesNestedInput | No |
| post | PostUpdateOneWithoutImagesNestedInput | No |
| likes | LikeUpdateManyWithoutImageNestedInput | No |
| shares | ShareUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| likes | LikeUncheckedUpdateManyWithoutImageNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| authorId | String | No |
| galleryId | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| postId | String | Null | Yes |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutLikesInput | No |
| comment | CommentCreateNestedOneWithoutLikesInput | No |
| gallery | GalleryCreateNestedOneWithoutLikesInput | No |
| image | ImageCreateNestedOneWithoutLikesInput | No |
| post | PostCreateNestedOneWithoutLikesInput | No |
| character | CharacterCreateNestedOneWithoutLikesInput | No |
| book | BookCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| comment | CommentUpdateOneWithoutLikesNestedInput | No |
| gallery | GalleryUpdateOneWithoutLikesNestedInput | No |
| image | ImageUpdateOneWithoutLikesNestedInput | No |
| post | PostUpdateOneWithoutLikesNestedInput | No |
| character | CharacterUpdateOneWithoutLikesNestedInput | No |
| book | BookUpdateOneWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| author | UserCreateNestedOneWithoutSharesInput | No |
| gallery | GalleryCreateNestedOneWithoutSharesInput | No |
| image | ImageCreateNestedOneWithoutSharesInput | No |
| post | PostCreateNestedOneWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| postId | String | Null | Yes |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutSharesNestedInput | No |
| gallery | GalleryUpdateOneWithoutSharesNestedInput | No |
| image | ImageUpdateOneWithoutSharesNestedInput | No |
| post | PostUpdateOneWithoutSharesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| postId | String | Null | Yes |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| follower | UserCreateNestedOneWithoutFollowerInput | No |
| following | UserCreateNestedOneWithoutFollowingInput | No |
| character | CharacterCreateNestedOneWithoutFansInput | No |
| book | BookCreateNestedOneWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowerNestedInput | No |
| following | UserUpdateOneWithoutFollowingNestedInput | No |
| character | CharacterUpdateOneWithoutFansNestedInput | No |
| book | BookUpdateOneWithoutFansNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fan | UserCreateNestedOneWithoutFanOfInput | No |
| fanOf | UserCreateNestedOneWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fanId | String | No |
| fanOfId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fan | UserUpdateOneRequiredWithoutFanOfNestedInput | No |
| fanOf | UserUpdateOneRequiredWithoutFansNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| fanId | String | StringFieldUpdateOperationsInput | No |
| fanOfId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fanId | String | No |
| fanOfId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| fanId | String | StringFieldUpdateOperationsInput | No |
| fanOfId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| messages | ChatMessageCreateNestedManyWithoutChatRoomInput | No |
| users | UserCreateNestedManyWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| messages | ChatMessageUncheckedCreateNestedManyWithoutChatRoomInput | No |
| users | UserUncheckedCreateNestedManyWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| messages | ChatMessageUpdateManyWithoutChatRoomNestedInput | No |
| users | UserUpdateManyWithoutChatsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| messages | ChatMessageUncheckedUpdateManyWithoutChatRoomNestedInput | No |
| users | UserUncheckedUpdateManyWithoutChatsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| content | String | No |
| author | UserCreateNestedOneWithoutChatMessagesInput | No |
| chatRoom | ChatRoomCreateNestedOneWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| chatRoomId | String | No |
| authorId | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutChatMessagesNestedInput | No |
| chatRoom | ChatRoomUpdateOneRequiredWithoutMessagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| chatRoomId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| chatRoomId | String | No |
| authorId | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| chatRoomId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| blocked | BlockCreateNestedManyWithoutBlockedThreadInput | No |
| comments | CommentCreateNestedManyWithoutThreadInput | No |
| commune | CommuneCreateNestedOneWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| blocked | BlockUncheckedCreateNestedManyWithoutBlockedThreadInput | No |
| comments | CommentUncheckedCreateNestedManyWithoutThreadInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| blocked | BlockUpdateManyWithoutBlockedThreadNestedInput | No |
| comments | CommentUpdateManyWithoutThreadNestedInput | No |
| commune | CommuneUpdateOneWithoutThreadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| blocked | BlockUncheckedUpdateManyWithoutBlockedThreadNestedInput | No |
| comments | CommentUncheckedUpdateManyWithoutThreadNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutThreadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| content | String | No |
| visible | Boolean | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| thread | CommentThreadCreateNestedOneWithoutCommentsInput | No |
| likes | LikeCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| threadId | String | No |
| authorId | String | No |
| content | String | No |
| visible | Boolean | No |
| likes | LikeUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutCommentsNestedInput | No |
| thread | CommentThreadUpdateOneRequiredWithoutCommentsNestedInput | No |
| likes | LikeUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| threadId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| likes | LikeUncheckedUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| threadId | String | No |
| authorId | String | No |
| content | String | No |
| visible | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| threadId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| gallery | GalleryCreateNestedOneWithoutCommuneInput | No |
| owner | UserCreateNestedOneWithoutOwnedCommunesInput | No |
| thread | CommentThreadCreateNestedOneWithoutCommuneInput | No |
| users | CommuneUserCreateNestedManyWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| ownerId | String | No |
| entity | Entity | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| users | CommuneUserUncheckedCreateNestedManyWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| gallery | GalleryUpdateOneWithoutCommuneNestedInput | No |
| owner | UserUpdateOneRequiredWithoutOwnedCommunesNestedInput | No |
| thread | CommentThreadUpdateOneWithoutCommuneNestedInput | No |
| users | CommuneUserUpdateManyWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| users | CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| ownerId | String | No |
| entity | Entity | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | Role | No |
| commune | CommuneCreateNestedOneWithoutUsersInput | No |
| user | UserCreateNestedOneWithoutCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| communeId | String | No |
| userId | String | No |
| role | Role | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| commune | CommuneUpdateOneRequiredWithoutUsersNestedInput | No |
| user | UserUpdateOneRequiredWithoutCommunesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| communeId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| communeId | String | No |
| userId | String | No |
| role | Role | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| communeId | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| level | Audience | Null | Yes |
| user | UserCreateNestedOneWithoutMembershipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| level | Audience | Null | Yes |
| user | UserUncheckedCreateNestedOneWithoutMembershipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| level | Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutMembershipNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| level | Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null | Yes |
| user | UserUncheckedUpdateOneWithoutMembershipNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| level | Audience | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| level | Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| level | Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| books | BookCreateNestedManyWithoutGenreInput | No |
| covers | CoversCreateNestedManyWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| books | BookUncheckedCreateNestedManyWithoutGenreInput | No |
| covers | CoversUncheckedCreateNestedManyWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fiction | Boolean | BoolFieldUpdateOperationsInput | No |
| books | BookUpdateManyWithoutGenreNestedInput | No |
| covers | CoversUpdateManyWithoutGenreNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fiction | Boolean | BoolFieldUpdateOperationsInput | No |
| books | BookUncheckedUpdateManyWithoutGenreNestedInput | No |
| covers | CoversUncheckedUpdateManyWithoutGenreNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fiction | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fiction | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| url | String | No |
| genre | GenreCreateNestedOneWithoutCoversInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| url | String | No |
| genreId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| genre | GenreUpdateOneRequiredWithoutCoversNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| genreId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| url | String | No |
| genreId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| genreId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| books | BookCreateNestedManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| books | BookUncheckedCreateNestedManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| books | BookUpdateManyWithoutCategoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| books | BookUncheckedUpdateManyWithoutCategoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| genre | GenreCreateNestedOneWithoutBooksInput | No |
| categories | BookCategoryCreateNestedManyWithoutBooksInput | No |
| authors | UserCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterCreateNestedManyWithoutBookInput | No |
| characters | CharacterCreateNestedManyWithoutBooksInput | No |
| gallery | GalleryCreateNestedOneWithoutBook_galleryInput | No |
| fans | FollowCreateNestedManyWithoutBookInput | No |
| likes | LikeCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| categories | BookCategoryUncheckedCreateNestedManyWithoutBooksInput | No |
| authors | UserUncheckedCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutBookInput | No |
| characters | CharacterUncheckedCreateNestedManyWithoutBooksInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutBookInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| status | BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null | Yes |
| prospect | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| cover | String | StringFieldUpdateOperationsInput | No |
| hook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| synopsis | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| back | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| words | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| status | BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null | Yes |
| prospect | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| cover | String | StringFieldUpdateOperationsInput | No |
| genreId | String | StringFieldUpdateOperationsInput | No |
| hook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| synopsis | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| back | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| words | Int | IntFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| likes | LikeCreateNestedManyWithoutCharacterInput | No |
| fans | FollowCreateNestedManyWithoutCharacterInput | No |
| books | BookCreateNestedManyWithoutCharactersInput | No |
| chapters | ChapterCreateNestedManyWithoutCharactersInput | No |
| gallery | GalleryCreateNestedOneWithoutCharacter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| galleryId | String | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutCharacterInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutCharacterInput | No |
| books | BookUncheckedCreateNestedManyWithoutCharactersInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| galleryId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| thumbnail | String | StringFieldUpdateOperationsInput | No |
| age | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| backstory | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| archetype | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| thumbnail | String | StringFieldUpdateOperationsInput | No |
| age | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| backstory | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| archetype | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| characters | CharacterCreateNestedManyWithoutChaptersInput | No |
| book | BookCreateNestedOneWithoutChaptersInput | No |
| gallery | GalleryCreateNestedOneWithoutChapter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| bookId | String | No |
| galleryId | String | Null | Yes |
| characters | CharacterUncheckedCreateNestedManyWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| characters | CharacterUpdateManyWithoutChaptersNestedInput | No |
| book | BookUpdateOneRequiredWithoutChaptersNestedInput | No |
| gallery | GalleryUpdateOneWithoutChapter_galleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| bookId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characters | CharacterUncheckedUpdateManyWithoutChaptersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| bookId | String | No |
| galleryId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| bookId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedUser | UserCreateNestedOneWithoutBlockingInput | No |
| blockedGallery | GalleryCreateNestedOneWithoutBlockingInput | No |
| blockedThread | CommentThreadCreateNestedOneWithoutBlockedInput | No |
| user | UserCreateNestedOneWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedId | String | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedUser | UserUpdateOneRequiredWithoutBlockingNestedInput | No |
| blockedGallery | GalleryUpdateOneWithoutBlockingNestedInput | No |
| blockedThread | CommentThreadUpdateOneWithoutBlockedNestedInput | No |
| user | UserUpdateOneRequiredWithoutBlockedNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedId | String | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| oauth_token | String | Null | Yes |
| user | UserCreateNestedOneWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| oauth_token | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutAccountsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| oauth_token | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| user | UserCreateNestedOneWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutSessionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | AccountWhereInput | No |
| some | AccountWhereInput | No |
| none | AccountWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | BlockWhereInput | No |
| some | BlockWhereInput | No |
| none | BlockWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChatMessageWhereInput | No |
| some | ChatMessageWhereInput | No |
| none | ChatMessageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CommentWhereInput | No |
| some | CommentWhereInput | No |
| none | CommentWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CommuneWhereInput | No |
| some | CommuneWhereInput | No |
| none | CommuneWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CommuneUserWhereInput | No |
| some | CommuneUserWhereInput | No |
| none | CommuneUserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FanWhereInput | No |
| some | FanWhereInput | No |
| none | FanWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FollowWhereInput | No |
| some | FollowWhereInput | No |
| none | FollowWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | GalleryWhereInput | No |
| some | GalleryWhereInput | No |
| none | GalleryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ImageWhereInput | No |
| some | ImageWhereInput | No |
| none | ImageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | LikeWhereInput | No |
| some | LikeWhereInput | No |
| none | LikeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PostWhereInput | No |
| some | PostWhereInput | No |
| none | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SessionWhereInput | No |
| some | SessionWhereInput | No |
| none | SessionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ShareWhereInput | No |
| some | ShareWhereInput | No |
| none | ShareWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChatRoomWhereInput | No |
| some | ChatRoomWhereInput | No |
| none | ChatRoomWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | MembershipWhereInput | Null | Yes |
| isNot | MembershipWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | BookWhereInput | No |
| some | BookWhereInput | No |
| none | BookWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| membershipId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| membershipId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| image | SortOrder | No |
| membershipId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | NewsWhereInput | Null | Yes |
| isNot | NewsWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | PostWhereInput | No |
| isNot | PostWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| content | SortOrder | No |
| shareId | SortOrder | No |
| commentId | SortOrder | No |
| authorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| content | SortOrder | No |
| shareId | SortOrder | No |
| commentId | SortOrder | No |
| authorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| content | SortOrder | No |
| shareId | SortOrder | No |
| commentId | SortOrder | No |
| authorId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Audience | No |
| in | Audience[] | No |
| notIn | Audience[] | No |
| not | Audience | NestedEnumAudienceFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| banner | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| postId | SortOrder | No |
| audience | SortOrder | No |
| views | SortOrder | No |
| priority | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| banner | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| postId | SortOrder | No |
| audience | SortOrder | No |
| views | SortOrder | No |
| priority | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| banner | SortOrder | No |
| startDate | SortOrder | No |
| endDate | SortOrder | No |
| postId | SortOrder | No |
| audience | SortOrder | No |
| views | SortOrder | No |
| priority | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Audience | No |
| in | Audience[] | No |
| notIn | Audience[] | No |
| not | Audience | NestedEnumAudienceWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAudienceFilter | No |
| _max | NestedEnumAudienceFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CommuneWhereInput | Null | Yes |
| isNot | CommuneWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | BookWhereInput | No |
| isNot | BookWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | CharacterWhereInput | Null | Yes |
| isNot | CharacterWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ChapterWhereInput | Null | Yes |
| isNot | ChapterWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| authorId | SortOrder | No |
| shareId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| authorId | SortOrder | No |
| shareId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| authorId | SortOrder | No |
| shareId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | GalleryWhereInput | Null | Yes |
| isNot | GalleryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| authorId | SortOrder | No |
| galleryId | SortOrder | No |
| shareId | SortOrder | No |
| url | SortOrder | No |
| postId | SortOrder | No |
| height | SortOrder | No |
| width | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| authorId | SortOrder | No |
| galleryId | SortOrder | No |
| shareId | SortOrder | No |
| url | SortOrder | No |
| postId | SortOrder | No |
| height | SortOrder | No |
| width | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| title | SortOrder | No |
| authorId | SortOrder | No |
| galleryId | SortOrder | No |
| shareId | SortOrder | No |
| url | SortOrder | No |
| postId | SortOrder | No |
| height | SortOrder | No |
| width | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CommentWhereInput | Null | Yes |
| isNot | CommentWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ImageWhereInput | Null | Yes |
| isNot | ImageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| commentId | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| commentId | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| commentId | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| authorId | SortOrder | No |
| postId | SortOrder | No |
| galleryId | SortOrder | No |
| imageId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| followerId | SortOrder | No |
| followingId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| characterId | SortOrder | No |
| bookId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fanId | SortOrder | No |
| fanOfId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fanId | SortOrder | No |
| fanOfId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| fanId | SortOrder | No |
| fanOfId | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserWhereInput | No |
| some | UserWhereInput | No |
| none | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| party | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| party | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| party | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | ChatRoomWhereInput | No |
| isNot | ChatRoomWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| seen | SortOrder | No |
| chatRoomId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| seen | SortOrder | No |
| chatRoomId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| visible | SortOrder | No |
| seen | SortOrder | No |
| chatRoomId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Entity | No |
| in | Entity[] | No |
| notIn | Entity[] | No |
| not | Entity | NestedEnumEntityFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Role | No |
| in | Role[] | No |
| notIn | Role[] | No |
| not | Role | NestedEnumRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| requiredRole | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| requiredRole | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| requiredRole | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Entity | No |
| in | Entity[] | No |
| notIn | Entity[] | No |
| not | Entity | NestedEnumEntityWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumEntityFilter | No |
| _max | NestedEnumEntityFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Role | No |
| in | Role[] | No |
| notIn | Role[] | No |
| not | Role | NestedEnumRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRoleFilter | No |
| _max | NestedEnumRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CommentThreadWhereInput | No |
| isNot | CommentThreadWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| threadType | SortOrder | No |
| threadId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| visible | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| threadType | SortOrder | No |
| threadId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| visible | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| threadType | SortOrder | No |
| threadId | SortOrder | No |
| authorId | SortOrder | No |
| content | SortOrder | No |
| visible | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| ownerId | SortOrder | No |
| entity | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| ownerId | SortOrder | No |
| entity | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| ownerId | SortOrder | No |
| entity | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| communeId | SortOrder | No |
| userId | SortOrder | No |
| role | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| communeId | SortOrder | No |
| userId | SortOrder | No |
| role | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| communeId | SortOrder | No |
| userId | SortOrder | No |
| role | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Audience | Null | Yes |
| in | Audience[] | Null | Yes |
| notIn | Audience[] | Null | Yes |
| not | Audience | NestedEnumAudienceNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| level | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Audience | Null | Yes |
| in | Audience[] | Null | Yes |
| notIn | Audience[] | Null | Yes |
| not | Audience | NestedEnumAudienceNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumAudienceNullableFilter | No |
| _max | NestedEnumAudienceNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | CoversWhereInput | No |
| some | CoversWhereInput | No |
| none | CoversWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| fiction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| fiction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| fiction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | GenreWhereInput | No |
| isNot | GenreWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| url | SortOrder | No |
| genreId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| url | SortOrder | No |
| genreId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| url | SortOrder | No |
| genreId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BookStatus | Null | Yes |
| in | BookStatus[] | Null | Yes |
| notIn | BookStatus[] | Null | Yes |
| not | BookStatus | NestedEnumBookStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | BookCategoryWhereInput | No |
| some | BookCategoryWhereInput | No |
| none | BookCategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ChapterWhereInput | No |
| some | ChapterWhereInput | No |
| none | ChapterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CharacterWhereInput | No |
| some | CharacterWhereInput | No |
| none | CharacterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| status | SortOrder | No |
| prospect | SortOrder | No |
| title | SortOrder | No |
| cover | SortOrder | No |
| genreId | SortOrder | No |
| hook | SortOrder | No |
| synopsis | SortOrder | No |
| back | SortOrder | No |
| words | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| words | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| status | SortOrder | No |
| prospect | SortOrder | No |
| title | SortOrder | No |
| cover | SortOrder | No |
| genreId | SortOrder | No |
| hook | SortOrder | No |
| synopsis | SortOrder | No |
| back | SortOrder | No |
| words | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| status | SortOrder | No |
| prospect | SortOrder | No |
| title | SortOrder | No |
| cover | SortOrder | No |
| genreId | SortOrder | No |
| hook | SortOrder | No |
| synopsis | SortOrder | No |
| back | SortOrder | No |
| words | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| words | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BookStatus | Null | Yes |
| in | BookStatus[] | Null | Yes |
| notIn | BookStatus[] | Null | Yes |
| not | BookStatus | NestedEnumBookStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumBookStatusNullableFilter | No |
| _max | NestedEnumBookStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| name | SortOrder | No |
| familyName | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| thumbnail | SortOrder | No |
| age | SortOrder | No |
| role | SortOrder | No |
| description | SortOrder | No |
| backstory | SortOrder | No |
| title | SortOrder | No |
| archetype | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| name | SortOrder | No |
| familyName | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| thumbnail | SortOrder | No |
| age | SortOrder | No |
| role | SortOrder | No |
| description | SortOrder | No |
| backstory | SortOrder | No |
| title | SortOrder | No |
| archetype | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| name | SortOrder | No |
| familyName | SortOrder | No |
| givenName | SortOrder | No |
| middleName | SortOrder | No |
| thumbnail | SortOrder | No |
| age | SortOrder | No |
| role | SortOrder | No |
| description | SortOrder | No |
| backstory | SortOrder | No |
| title | SortOrder | No |
| archetype | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| content | SortOrder | No |
| words | SortOrder | No |
| bookId | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| words | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| content | SortOrder | No |
| words | SortOrder | No |
| bookId | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| active | SortOrder | No |
| content | SortOrder | No |
| words | SortOrder | No |
| bookId | SortOrder | No |
| galleryId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| words | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Entity | Null | Yes |
| in | Entity[] | Null | Yes |
| notIn | Entity[] | Null | Yes |
| not | Entity | NestedEnumEntityNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| entityId | SortOrder | No |
| blockedId | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| entityId | SortOrder | No |
| blockedId | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| entity | SortOrder | No |
| entityId | SortOrder | No |
| blockedId | SortOrder | No |
| galleryId | SortOrder | No |
| threadId | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Entity | Null | Yes |
| in | Entity[] | Null | Yes |
| notIn | Entity[] | Null | Yes |
| not | Entity | NestedEnumEntityNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumEntityNullableFilter | No |
| _max | NestedEnumEntityNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| provider | String | No |
| providerAccountId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| oauth_token | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| oauth_token | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| oauth_token | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| userId | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutBlockedUserInput | BlockCreateWithoutBlockedUserInput[] | BlockUncheckedCreateWithoutBlockedUserInput | BlockUncheckedCreateWithoutBlockedUserInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutBlockedUserInput | BlockCreateOrConnectWithoutBlockedUserInput[] | No |
| createMany | BlockCreateManyBlockedUserInputEnvelope | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutUserInput | BlockCreateWithoutUserInput[] | BlockUncheckedCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutUserInput | BlockCreateOrConnectWithoutUserInput[] | No |
| createMany | BlockCreateManyUserInputEnvelope | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutAuthorInput | ChatMessageCreateWithoutAuthorInput[] | ChatMessageUncheckedCreateWithoutAuthorInput | ChatMessageUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutAuthorInput | ChatMessageCreateOrConnectWithoutAuthorInput[] | No |
| createMany | ChatMessageCreateManyAuthorInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutOwnerInput | CommuneCreateWithoutOwnerInput[] | CommuneUncheckedCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | CommuneCreateOrConnectWithoutOwnerInput | CommuneCreateOrConnectWithoutOwnerInput[] | No |
| createMany | CommuneCreateManyOwnerInputEnvelope | No |
| connect | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneUserCreateWithoutUserInput | CommuneUserCreateWithoutUserInput[] | CommuneUserUncheckedCreateWithoutUserInput | CommuneUserUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CommuneUserCreateOrConnectWithoutUserInput | CommuneUserCreateOrConnectWithoutUserInput[] | No |
| createMany | CommuneUserCreateManyUserInputEnvelope | No |
| connect | CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FanCreateWithoutFanInput | FanCreateWithoutFanInput[] | FanUncheckedCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput[] | No |
| connectOrCreate | FanCreateOrConnectWithoutFanInput | FanCreateOrConnectWithoutFanInput[] | No |
| createMany | FanCreateManyFanInputEnvelope | No |
| connect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FanCreateWithoutFanOfInput | FanCreateWithoutFanOfInput[] | FanUncheckedCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput[] | No |
| connectOrCreate | FanCreateOrConnectWithoutFanOfInput | FanCreateOrConnectWithoutFanOfInput[] | No |
| createMany | FanCreateManyFanOfInputEnvelope | No |
| connect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowerInput | FollowCreateWithoutFollowerInput[] | FollowUncheckedCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowerInput | FollowCreateOrConnectWithoutFollowerInput[] | No |
| createMany | FollowCreateManyFollowerInputEnvelope | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowingInput | FollowCreateWithoutFollowingInput[] | FollowUncheckedCreateWithoutFollowingInput | FollowUncheckedCreateWithoutFollowingInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowingInput | FollowCreateOrConnectWithoutFollowingInput[] | No |
| createMany | FollowCreateManyFollowingInputEnvelope | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutAuthorInput | GalleryCreateWithoutAuthorInput[] | GalleryUncheckedCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | GalleryCreateOrConnectWithoutAuthorInput | GalleryCreateOrConnectWithoutAuthorInput[] | No |
| createMany | GalleryCreateManyAuthorInputEnvelope | No |
| connect | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutAuthorInput | ImageCreateWithoutAuthorInput[] | ImageUncheckedCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutAuthorInput | ImageCreateOrConnectWithoutAuthorInput[] | No |
| createMany | ImageCreateManyAuthorInputEnvelope | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutAuthorInput | LikeCreateWithoutAuthorInput[] | LikeUncheckedCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutAuthorInput | LikeCreateOrConnectWithoutAuthorInput[] | No |
| createMany | LikeCreateManyAuthorInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] | No |
| createMany | PostCreateManyAuthorInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutAuthorInput | ShareCreateWithoutAuthorInput[] | ShareUncheckedCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutAuthorInput | ShareCreateOrConnectWithoutAuthorInput[] | No |
| createMany | ShareCreateManyAuthorInputEnvelope | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatRoomCreateWithoutUsersInput | ChatRoomCreateWithoutUsersInput[] | ChatRoomUncheckedCreateWithoutUsersInput | ChatRoomUncheckedCreateWithoutUsersInput[] | No |
| connectOrCreate | ChatRoomCreateOrConnectWithoutUsersInput | ChatRoomCreateOrConnectWithoutUsersInput[] | No |
| connect | ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MembershipCreateWithoutUserInput | MembershipUncheckedCreateWithoutUserInput | No |
| connectOrCreate | MembershipCreateOrConnectWithoutUserInput | No |
| connect | MembershipWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutAuthorsInput | BookCreateWithoutAuthorsInput[] | BookUncheckedCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutAuthorsInput | BookCreateOrConnectWithoutAuthorsInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutBlockedUserInput | BlockCreateWithoutBlockedUserInput[] | BlockUncheckedCreateWithoutBlockedUserInput | BlockUncheckedCreateWithoutBlockedUserInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutBlockedUserInput | BlockCreateOrConnectWithoutBlockedUserInput[] | No |
| createMany | BlockCreateManyBlockedUserInputEnvelope | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutUserInput | BlockCreateWithoutUserInput[] | BlockUncheckedCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutUserInput | BlockCreateOrConnectWithoutUserInput[] | No |
| createMany | BlockCreateManyUserInputEnvelope | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutAuthorInput | ChatMessageCreateWithoutAuthorInput[] | ChatMessageUncheckedCreateWithoutAuthorInput | ChatMessageUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutAuthorInput | ChatMessageCreateOrConnectWithoutAuthorInput[] | No |
| createMany | ChatMessageCreateManyAuthorInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutOwnerInput | CommuneCreateWithoutOwnerInput[] | CommuneUncheckedCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | CommuneCreateOrConnectWithoutOwnerInput | CommuneCreateOrConnectWithoutOwnerInput[] | No |
| createMany | CommuneCreateManyOwnerInputEnvelope | No |
| connect | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneUserCreateWithoutUserInput | CommuneUserCreateWithoutUserInput[] | CommuneUserUncheckedCreateWithoutUserInput | CommuneUserUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CommuneUserCreateOrConnectWithoutUserInput | CommuneUserCreateOrConnectWithoutUserInput[] | No |
| createMany | CommuneUserCreateManyUserInputEnvelope | No |
| connect | CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FanCreateWithoutFanInput | FanCreateWithoutFanInput[] | FanUncheckedCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput[] | No |
| connectOrCreate | FanCreateOrConnectWithoutFanInput | FanCreateOrConnectWithoutFanInput[] | No |
| createMany | FanCreateManyFanInputEnvelope | No |
| connect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FanCreateWithoutFanOfInput | FanCreateWithoutFanOfInput[] | FanUncheckedCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput[] | No |
| connectOrCreate | FanCreateOrConnectWithoutFanOfInput | FanCreateOrConnectWithoutFanOfInput[] | No |
| createMany | FanCreateManyFanOfInputEnvelope | No |
| connect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowerInput | FollowCreateWithoutFollowerInput[] | FollowUncheckedCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowerInput | FollowCreateOrConnectWithoutFollowerInput[] | No |
| createMany | FollowCreateManyFollowerInputEnvelope | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowingInput | FollowCreateWithoutFollowingInput[] | FollowUncheckedCreateWithoutFollowingInput | FollowUncheckedCreateWithoutFollowingInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowingInput | FollowCreateOrConnectWithoutFollowingInput[] | No |
| createMany | FollowCreateManyFollowingInputEnvelope | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutAuthorInput | GalleryCreateWithoutAuthorInput[] | GalleryUncheckedCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | GalleryCreateOrConnectWithoutAuthorInput | GalleryCreateOrConnectWithoutAuthorInput[] | No |
| createMany | GalleryCreateManyAuthorInputEnvelope | No |
| connect | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutAuthorInput | ImageCreateWithoutAuthorInput[] | ImageUncheckedCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutAuthorInput | ImageCreateOrConnectWithoutAuthorInput[] | No |
| createMany | ImageCreateManyAuthorInputEnvelope | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutAuthorInput | LikeCreateWithoutAuthorInput[] | LikeUncheckedCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutAuthorInput | LikeCreateOrConnectWithoutAuthorInput[] | No |
| createMany | LikeCreateManyAuthorInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] | No |
| createMany | PostCreateManyAuthorInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutAuthorInput | ShareCreateWithoutAuthorInput[] | ShareUncheckedCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutAuthorInput | ShareCreateOrConnectWithoutAuthorInput[] | No |
| createMany | ShareCreateManyAuthorInputEnvelope | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatRoomCreateWithoutUsersInput | ChatRoomCreateWithoutUsersInput[] | ChatRoomUncheckedCreateWithoutUsersInput | ChatRoomUncheckedCreateWithoutUsersInput[] | No |
| connectOrCreate | ChatRoomCreateOrConnectWithoutUsersInput | ChatRoomCreateOrConnectWithoutUsersInput[] | No |
| connect | ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutAuthorsInput | BookCreateWithoutAuthorsInput[] | BookUncheckedCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutAuthorsInput | BookCreateOrConnectWithoutAuthorsInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutUserInput | BlockCreateWithoutUserInput[] | BlockUncheckedCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutUserInput | BlockCreateOrConnectWithoutUserInput[] | No |
| upsert | BlockUpsertWithWhereUniqueWithoutUserInput | BlockUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | BlockCreateManyUserInputEnvelope | No |
| set | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| disconnect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| delete | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| update | BlockUpdateWithWhereUniqueWithoutUserInput | BlockUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | BlockUpdateManyWithWhereWithoutUserInput | BlockUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | BlockScalarWhereInput | BlockScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutOwnerInput | CommuneCreateWithoutOwnerInput[] | CommuneUncheckedCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | CommuneCreateOrConnectWithoutOwnerInput | CommuneCreateOrConnectWithoutOwnerInput[] | No |
| upsert | CommuneUpsertWithWhereUniqueWithoutOwnerInput | CommuneUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | CommuneCreateManyOwnerInputEnvelope | No |
| set | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| disconnect | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| delete | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| connect | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| update | CommuneUpdateWithWhereUniqueWithoutOwnerInput | CommuneUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | CommuneUpdateManyWithWhereWithoutOwnerInput | CommuneUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | CommuneScalarWhereInput | CommuneScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FanCreateWithoutFanInput | FanCreateWithoutFanInput[] | FanUncheckedCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput[] | No |
| connectOrCreate | FanCreateOrConnectWithoutFanInput | FanCreateOrConnectWithoutFanInput[] | No |
| upsert | FanUpsertWithWhereUniqueWithoutFanInput | FanUpsertWithWhereUniqueWithoutFanInput[] | No |
| createMany | FanCreateManyFanInputEnvelope | No |
| set | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| disconnect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| delete | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| connect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| update | FanUpdateWithWhereUniqueWithoutFanInput | FanUpdateWithWhereUniqueWithoutFanInput[] | No |
| updateMany | FanUpdateManyWithWhereWithoutFanInput | FanUpdateManyWithWhereWithoutFanInput[] | No |
| deleteMany | FanScalarWhereInput | FanScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FanCreateWithoutFanOfInput | FanCreateWithoutFanOfInput[] | FanUncheckedCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput[] | No |
| connectOrCreate | FanCreateOrConnectWithoutFanOfInput | FanCreateOrConnectWithoutFanOfInput[] | No |
| upsert | FanUpsertWithWhereUniqueWithoutFanOfInput | FanUpsertWithWhereUniqueWithoutFanOfInput[] | No |
| createMany | FanCreateManyFanOfInputEnvelope | No |
| set | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| disconnect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| delete | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| connect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| update | FanUpdateWithWhereUniqueWithoutFanOfInput | FanUpdateWithWhereUniqueWithoutFanOfInput[] | No |
| updateMany | FanUpdateManyWithWhereWithoutFanOfInput | FanUpdateManyWithWhereWithoutFanOfInput[] | No |
| deleteMany | FanScalarWhereInput | FanScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowerInput | FollowCreateWithoutFollowerInput[] | FollowUncheckedCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowerInput | FollowCreateOrConnectWithoutFollowerInput[] | No |
| upsert | FollowUpsertWithWhereUniqueWithoutFollowerInput | FollowUpsertWithWhereUniqueWithoutFollowerInput[] | No |
| createMany | FollowCreateManyFollowerInputEnvelope | No |
| set | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| disconnect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| delete | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| update | FollowUpdateWithWhereUniqueWithoutFollowerInput | FollowUpdateWithWhereUniqueWithoutFollowerInput[] | No |
| updateMany | FollowUpdateManyWithWhereWithoutFollowerInput | FollowUpdateManyWithWhereWithoutFollowerInput[] | No |
| deleteMany | FollowScalarWhereInput | FollowScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutAuthorInput | GalleryCreateWithoutAuthorInput[] | GalleryUncheckedCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | GalleryCreateOrConnectWithoutAuthorInput | GalleryCreateOrConnectWithoutAuthorInput[] | No |
| upsert | GalleryUpsertWithWhereUniqueWithoutAuthorInput | GalleryUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | GalleryCreateManyAuthorInputEnvelope | No |
| set | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| disconnect | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| delete | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| connect | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| update | GalleryUpdateWithWhereUniqueWithoutAuthorInput | GalleryUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | GalleryUpdateManyWithWhereWithoutAuthorInput | GalleryUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | GalleryScalarWhereInput | GalleryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutAuthorInput | ImageCreateWithoutAuthorInput[] | ImageUncheckedCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutAuthorInput | ImageCreateOrConnectWithoutAuthorInput[] | No |
| upsert | ImageUpsertWithWhereUniqueWithoutAuthorInput | ImageUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | ImageCreateManyAuthorInputEnvelope | No |
| set | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| disconnect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| delete | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| update | ImageUpdateWithWhereUniqueWithoutAuthorInput | ImageUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | ImageUpdateManyWithWhereWithoutAuthorInput | ImageUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | ImageScalarWhereInput | ImageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutAuthorInput | LikeCreateWithoutAuthorInput[] | LikeUncheckedCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutAuthorInput | LikeCreateOrConnectWithoutAuthorInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutAuthorInput | LikeUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | LikeCreateManyAuthorInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutAuthorInput | LikeUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutAuthorInput | LikeUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutAuthorInput | PostUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | PostCreateManyAuthorInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutAuthorInput | PostUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutAuthorInput | PostUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutAuthorInput | ShareCreateWithoutAuthorInput[] | ShareUncheckedCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutAuthorInput | ShareCreateOrConnectWithoutAuthorInput[] | No |
| upsert | ShareUpsertWithWhereUniqueWithoutAuthorInput | ShareUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | ShareCreateManyAuthorInputEnvelope | No |
| set | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| disconnect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| delete | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| update | ShareUpdateWithWhereUniqueWithoutAuthorInput | ShareUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | ShareUpdateManyWithWhereWithoutAuthorInput | ShareUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MembershipCreateWithoutUserInput | MembershipUncheckedCreateWithoutUserInput | No |
| connectOrCreate | MembershipCreateOrConnectWithoutUserInput | No |
| upsert | MembershipUpsertWithoutUserInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | MembershipWhereUniqueInput | No |
| update | MembershipUpdateWithoutUserInput | MembershipUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutAuthorsInput | BookCreateWithoutAuthorsInput[] | BookUncheckedCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutAuthorsInput | BookCreateOrConnectWithoutAuthorsInput[] | No |
| upsert | BookUpsertWithWhereUniqueWithoutAuthorsInput | BookUpsertWithWhereUniqueWithoutAuthorsInput[] | No |
| set | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| disconnect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| delete | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| update | BookUpdateWithWhereUniqueWithoutAuthorsInput | BookUpdateWithWhereUniqueWithoutAuthorsInput[] | No |
| updateMany | BookUpdateManyWithWhereWithoutAuthorsInput | BookUpdateManyWithWhereWithoutAuthorsInput[] | No |
| deleteMany | BookScalarWhereInput | BookScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutUserInput | BlockCreateWithoutUserInput[] | BlockUncheckedCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutUserInput | BlockCreateOrConnectWithoutUserInput[] | No |
| upsert | BlockUpsertWithWhereUniqueWithoutUserInput | BlockUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | BlockCreateManyUserInputEnvelope | No |
| set | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| disconnect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| delete | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| update | BlockUpdateWithWhereUniqueWithoutUserInput | BlockUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | BlockUpdateManyWithWhereWithoutUserInput | BlockUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | BlockScalarWhereInput | BlockScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | CommentCreateManyAuthorInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutOwnerInput | CommuneCreateWithoutOwnerInput[] | CommuneUncheckedCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput[] | No |
| connectOrCreate | CommuneCreateOrConnectWithoutOwnerInput | CommuneCreateOrConnectWithoutOwnerInput[] | No |
| upsert | CommuneUpsertWithWhereUniqueWithoutOwnerInput | CommuneUpsertWithWhereUniqueWithoutOwnerInput[] | No |
| createMany | CommuneCreateManyOwnerInputEnvelope | No |
| set | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| disconnect | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| delete | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| connect | CommuneWhereUniqueInput | CommuneWhereUniqueInput[] | No |
| update | CommuneUpdateWithWhereUniqueWithoutOwnerInput | CommuneUpdateWithWhereUniqueWithoutOwnerInput[] | No |
| updateMany | CommuneUpdateManyWithWhereWithoutOwnerInput | CommuneUpdateManyWithWhereWithoutOwnerInput[] | No |
| deleteMany | CommuneScalarWhereInput | CommuneScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FanCreateWithoutFanInput | FanCreateWithoutFanInput[] | FanUncheckedCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput[] | No |
| connectOrCreate | FanCreateOrConnectWithoutFanInput | FanCreateOrConnectWithoutFanInput[] | No |
| upsert | FanUpsertWithWhereUniqueWithoutFanInput | FanUpsertWithWhereUniqueWithoutFanInput[] | No |
| createMany | FanCreateManyFanInputEnvelope | No |
| set | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| disconnect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| delete | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| connect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| update | FanUpdateWithWhereUniqueWithoutFanInput | FanUpdateWithWhereUniqueWithoutFanInput[] | No |
| updateMany | FanUpdateManyWithWhereWithoutFanInput | FanUpdateManyWithWhereWithoutFanInput[] | No |
| deleteMany | FanScalarWhereInput | FanScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FanCreateWithoutFanOfInput | FanCreateWithoutFanOfInput[] | FanUncheckedCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput[] | No |
| connectOrCreate | FanCreateOrConnectWithoutFanOfInput | FanCreateOrConnectWithoutFanOfInput[] | No |
| upsert | FanUpsertWithWhereUniqueWithoutFanOfInput | FanUpsertWithWhereUniqueWithoutFanOfInput[] | No |
| createMany | FanCreateManyFanOfInputEnvelope | No |
| set | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| disconnect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| delete | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| connect | FanWhereUniqueInput | FanWhereUniqueInput[] | No |
| update | FanUpdateWithWhereUniqueWithoutFanOfInput | FanUpdateWithWhereUniqueWithoutFanOfInput[] | No |
| updateMany | FanUpdateManyWithWhereWithoutFanOfInput | FanUpdateManyWithWhereWithoutFanOfInput[] | No |
| deleteMany | FanScalarWhereInput | FanScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutFollowerInput | FollowCreateWithoutFollowerInput[] | FollowUncheckedCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutFollowerInput | FollowCreateOrConnectWithoutFollowerInput[] | No |
| upsert | FollowUpsertWithWhereUniqueWithoutFollowerInput | FollowUpsertWithWhereUniqueWithoutFollowerInput[] | No |
| createMany | FollowCreateManyFollowerInputEnvelope | No |
| set | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| disconnect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| delete | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| update | FollowUpdateWithWhereUniqueWithoutFollowerInput | FollowUpdateWithWhereUniqueWithoutFollowerInput[] | No |
| updateMany | FollowUpdateManyWithWhereWithoutFollowerInput | FollowUpdateManyWithWhereWithoutFollowerInput[] | No |
| deleteMany | FollowScalarWhereInput | FollowScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutAuthorInput | GalleryCreateWithoutAuthorInput[] | GalleryUncheckedCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | GalleryCreateOrConnectWithoutAuthorInput | GalleryCreateOrConnectWithoutAuthorInput[] | No |
| upsert | GalleryUpsertWithWhereUniqueWithoutAuthorInput | GalleryUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | GalleryCreateManyAuthorInputEnvelope | No |
| set | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| disconnect | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| delete | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| connect | GalleryWhereUniqueInput | GalleryWhereUniqueInput[] | No |
| update | GalleryUpdateWithWhereUniqueWithoutAuthorInput | GalleryUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | GalleryUpdateManyWithWhereWithoutAuthorInput | GalleryUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | GalleryScalarWhereInput | GalleryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutAuthorInput | ImageCreateWithoutAuthorInput[] | ImageUncheckedCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutAuthorInput | ImageCreateOrConnectWithoutAuthorInput[] | No |
| upsert | ImageUpsertWithWhereUniqueWithoutAuthorInput | ImageUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | ImageCreateManyAuthorInputEnvelope | No |
| set | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| disconnect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| delete | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| update | ImageUpdateWithWhereUniqueWithoutAuthorInput | ImageUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | ImageUpdateManyWithWhereWithoutAuthorInput | ImageUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | ImageScalarWhereInput | ImageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutAuthorInput | LikeCreateWithoutAuthorInput[] | LikeUncheckedCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutAuthorInput | LikeCreateOrConnectWithoutAuthorInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutAuthorInput | LikeUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | LikeCreateManyAuthorInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutAuthorInput | LikeUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutAuthorInput | LikeUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutAuthorInput | PostUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | PostCreateManyAuthorInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutAuthorInput | PostUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutAuthorInput | PostUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutAuthorInput | ShareCreateWithoutAuthorInput[] | ShareUncheckedCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutAuthorInput | ShareCreateOrConnectWithoutAuthorInput[] | No |
| upsert | ShareUpsertWithWhereUniqueWithoutAuthorInput | ShareUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | ShareCreateManyAuthorInputEnvelope | No |
| set | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| disconnect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| delete | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| update | ShareUpdateWithWhereUniqueWithoutAuthorInput | ShareUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | ShareUpdateManyWithWhereWithoutAuthorInput | ShareUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutAuthorsInput | BookCreateWithoutAuthorsInput[] | BookUncheckedCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutAuthorsInput | BookCreateOrConnectWithoutAuthorsInput[] | No |
| upsert | BookUpsertWithWhereUniqueWithoutAuthorsInput | BookUpsertWithWhereUniqueWithoutAuthorsInput[] | No |
| set | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| disconnect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| delete | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| update | BookUpdateWithWhereUniqueWithoutAuthorsInput | BookUpdateWithWhereUniqueWithoutAuthorsInput[] | No |
| updateMany | BookUpdateManyWithWhereWithoutAuthorsInput | BookUpdateManyWithWhereWithoutAuthorsInput[] | No |
| deleteMany | BookScalarWhereInput | BookScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutPostInput | ImageCreateWithoutPostInput[] | ImageUncheckedCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutPostInput | ImageCreateOrConnectWithoutPostInput[] | No |
| createMany | ImageCreateManyPostInputEnvelope | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutPostInput | LikeCreateWithoutPostInput[] | LikeUncheckedCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutPostInput | LikeCreateOrConnectWithoutPostInput[] | No |
| createMany | LikeCreateManyPostInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPostsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput | No |
| connectOrCreate | NewsCreateOrConnectWithoutPostInput | No |
| connect | NewsWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutPost_commentsInput | PostUncheckedCreateWithoutPost_commentsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutPost_commentsInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCommentInput | PostCreateWithoutCommentInput[] | PostUncheckedCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutCommentInput | PostCreateOrConnectWithoutCommentInput[] | No |
| createMany | PostCreateManyCommentInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutPostInput | ShareCreateWithoutPostInput[] | ShareUncheckedCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutPostInput | ShareCreateOrConnectWithoutPostInput[] | No |
| createMany | ShareCreateManyPostInputEnvelope | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutPostInput | ImageCreateWithoutPostInput[] | ImageUncheckedCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutPostInput | ImageCreateOrConnectWithoutPostInput[] | No |
| createMany | ImageCreateManyPostInputEnvelope | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutPostInput | LikeCreateWithoutPostInput[] | LikeUncheckedCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutPostInput | LikeCreateOrConnectWithoutPostInput[] | No |
| createMany | LikeCreateManyPostInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput | No |
| connectOrCreate | NewsCreateOrConnectWithoutPostInput | No |
| connect | NewsWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCommentInput | PostCreateWithoutCommentInput[] | PostUncheckedCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutCommentInput | PostCreateOrConnectWithoutCommentInput[] | No |
| createMany | PostCreateManyCommentInputEnvelope | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutPostInput | ShareCreateWithoutPostInput[] | ShareUncheckedCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutPostInput | ShareCreateOrConnectWithoutPostInput[] | No |
| createMany | ShareCreateManyPostInputEnvelope | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutPostInput | ImageCreateWithoutPostInput[] | ImageUncheckedCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutPostInput | ImageCreateOrConnectWithoutPostInput[] | No |
| upsert | ImageUpsertWithWhereUniqueWithoutPostInput | ImageUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | ImageCreateManyPostInputEnvelope | No |
| set | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| disconnect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| delete | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| update | ImageUpdateWithWhereUniqueWithoutPostInput | ImageUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | ImageUpdateManyWithWhereWithoutPostInput | ImageUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | ImageScalarWhereInput | ImageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutPostInput | LikeCreateWithoutPostInput[] | LikeUncheckedCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutPostInput | LikeCreateOrConnectWithoutPostInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutPostInput | LikeUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | LikeCreateManyPostInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutPostInput | LikeUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutPostInput | LikeUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPostsInput | No |
| upsert | UserUpsertWithoutPostsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutPostsInput | UserUncheckedUpdateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput | No |
| connectOrCreate | NewsCreateOrConnectWithoutPostInput | No |
| upsert | NewsUpsertWithoutPostInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | NewsWhereUniqueInput | No |
| update | NewsUpdateWithoutPostInput | NewsUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutPost_commentsInput | PostUncheckedCreateWithoutPost_commentsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutPost_commentsInput | No |
| upsert | PostUpsertWithoutPost_commentsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutPost_commentsInput | PostUncheckedUpdateWithoutPost_commentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCommentInput | PostCreateWithoutCommentInput[] | PostUncheckedCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutCommentInput | PostCreateOrConnectWithoutCommentInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutCommentInput | PostUpsertWithWhereUniqueWithoutCommentInput[] | No |
| createMany | PostCreateManyCommentInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutCommentInput | PostUpdateWithWhereUniqueWithoutCommentInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutCommentInput | PostUpdateManyWithWhereWithoutCommentInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutPostInput | ShareCreateWithoutPostInput[] | ShareUncheckedCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutPostInput | ShareCreateOrConnectWithoutPostInput[] | No |
| upsert | ShareUpsertWithWhereUniqueWithoutPostInput | ShareUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | ShareCreateManyPostInputEnvelope | No |
| set | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| disconnect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| delete | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| update | ShareUpdateWithWhereUniqueWithoutPostInput | ShareUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | ShareUpdateManyWithWhereWithoutPostInput | ShareUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutPostInput | ImageCreateWithoutPostInput[] | ImageUncheckedCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutPostInput | ImageCreateOrConnectWithoutPostInput[] | No |
| upsert | ImageUpsertWithWhereUniqueWithoutPostInput | ImageUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | ImageCreateManyPostInputEnvelope | No |
| set | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| disconnect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| delete | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| update | ImageUpdateWithWhereUniqueWithoutPostInput | ImageUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | ImageUpdateManyWithWhereWithoutPostInput | ImageUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | ImageScalarWhereInput | ImageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutPostInput | LikeCreateWithoutPostInput[] | LikeUncheckedCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutPostInput | LikeCreateOrConnectWithoutPostInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutPostInput | LikeUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | LikeCreateManyPostInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutPostInput | LikeUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutPostInput | LikeUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput | No |
| connectOrCreate | NewsCreateOrConnectWithoutPostInput | No |
| upsert | NewsUpsertWithoutPostInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | NewsWhereUniqueInput | No |
| update | NewsUpdateWithoutPostInput | NewsUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutCommentInput | PostCreateWithoutCommentInput[] | PostUncheckedCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | PostCreateOrConnectWithoutCommentInput | PostCreateOrConnectWithoutCommentInput[] | No |
| upsert | PostUpsertWithWhereUniqueWithoutCommentInput | PostUpsertWithWhereUniqueWithoutCommentInput[] | No |
| createMany | PostCreateManyCommentInputEnvelope | No |
| set | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| disconnect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| delete | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| connect | PostWhereUniqueInput | PostWhereUniqueInput[] | No |
| update | PostUpdateWithWhereUniqueWithoutCommentInput | PostUpdateWithWhereUniqueWithoutCommentInput[] | No |
| updateMany | PostUpdateManyWithWhereWithoutCommentInput | PostUpdateManyWithWhereWithoutCommentInput[] | No |
| deleteMany | PostScalarWhereInput | PostScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutPostInput | ShareCreateWithoutPostInput[] | ShareUncheckedCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutPostInput | ShareCreateOrConnectWithoutPostInput[] | No |
| upsert | ShareUpsertWithWhereUniqueWithoutPostInput | ShareUpsertWithWhereUniqueWithoutPostInput[] | No |
| createMany | ShareCreateManyPostInputEnvelope | No |
| set | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| disconnect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| delete | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| update | ShareUpdateWithWhereUniqueWithoutPostInput | ShareUpdateWithWhereUniqueWithoutPostInput[] | No |
| updateMany | ShareUpdateManyWithWhereWithoutPostInput | ShareUpdateManyWithWhereWithoutPostInput[] | No |
| deleteMany | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutNewsInput | PostUncheckedCreateWithoutNewsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutNewsInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Audience | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutNewsInput | PostUncheckedCreateWithoutNewsInput | No |
| connectOrCreate | PostCreateOrConnectWithoutNewsInput | No |
| upsert | PostUpsertWithoutNewsInput | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutNewsInput | PostUncheckedUpdateWithoutNewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutBlockedGalleryInput | BlockCreateWithoutBlockedGalleryInput[] | BlockUncheckedCreateWithoutBlockedGalleryInput | BlockUncheckedCreateWithoutBlockedGalleryInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutBlockedGalleryInput | BlockCreateOrConnectWithoutBlockedGalleryInput[] | No |
| createMany | BlockCreateManyBlockedGalleryInputEnvelope | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutGalleryInput | No |
| connect | CommuneWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutGalleriesInput | UserUncheckedCreateWithoutGalleriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutGalleriesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutGalleryInput | ImageCreateWithoutGalleryInput[] | ImageUncheckedCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutGalleryInput | ImageCreateOrConnectWithoutGalleryInput[] | No |
| createMany | ImageCreateManyGalleryInputEnvelope | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutGalleryInput | LikeCreateWithoutGalleryInput[] | LikeUncheckedCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutGalleryInput | LikeCreateOrConnectWithoutGalleryInput[] | No |
| createMany | LikeCreateManyGalleryInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutGalleryInput | ShareCreateWithoutGalleryInput[] | ShareUncheckedCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutGalleryInput | ShareCreateOrConnectWithoutGalleryInput[] | No |
| createMany | ShareCreateManyGalleryInputEnvelope | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | BookCreateOrConnectWithoutGalleryInput | No |
| connect | BookWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | CharacterCreateOrConnectWithoutGalleryInput | No |
| connect | CharacterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | ChapterCreateOrConnectWithoutGalleryInput | No |
| connect | ChapterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutBlockedGalleryInput | BlockCreateWithoutBlockedGalleryInput[] | BlockUncheckedCreateWithoutBlockedGalleryInput | BlockUncheckedCreateWithoutBlockedGalleryInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutBlockedGalleryInput | BlockCreateOrConnectWithoutBlockedGalleryInput[] | No |
| createMany | BlockCreateManyBlockedGalleryInputEnvelope | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutGalleryInput | No |
| connect | CommuneWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutGalleryInput | ImageCreateWithoutGalleryInput[] | ImageUncheckedCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutGalleryInput | ImageCreateOrConnectWithoutGalleryInput[] | No |
| createMany | ImageCreateManyGalleryInputEnvelope | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutGalleryInput | LikeCreateWithoutGalleryInput[] | LikeUncheckedCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutGalleryInput | LikeCreateOrConnectWithoutGalleryInput[] | No |
| createMany | LikeCreateManyGalleryInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutGalleryInput | ShareCreateWithoutGalleryInput[] | ShareUncheckedCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutGalleryInput | ShareCreateOrConnectWithoutGalleryInput[] | No |
| createMany | ShareCreateManyGalleryInputEnvelope | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | BookCreateOrConnectWithoutGalleryInput | No |
| connect | BookWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | CharacterCreateOrConnectWithoutGalleryInput | No |
| connect | CharacterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | ChapterCreateOrConnectWithoutGalleryInput | No |
| connect | ChapterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutGalleryInput | No |
| upsert | CommuneUpsertWithoutGalleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommuneWhereUniqueInput | No |
| update | CommuneUpdateWithoutGalleryInput | CommuneUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutGalleriesInput | UserUncheckedCreateWithoutGalleriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutGalleriesInput | No |
| upsert | UserUpsertWithoutGalleriesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutGalleriesInput | UserUncheckedUpdateWithoutGalleriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutGalleryInput | ImageCreateWithoutGalleryInput[] | ImageUncheckedCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutGalleryInput | ImageCreateOrConnectWithoutGalleryInput[] | No |
| upsert | ImageUpsertWithWhereUniqueWithoutGalleryInput | ImageUpsertWithWhereUniqueWithoutGalleryInput[] | No |
| createMany | ImageCreateManyGalleryInputEnvelope | No |
| set | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| disconnect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| delete | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| update | ImageUpdateWithWhereUniqueWithoutGalleryInput | ImageUpdateWithWhereUniqueWithoutGalleryInput[] | No |
| updateMany | ImageUpdateManyWithWhereWithoutGalleryInput | ImageUpdateManyWithWhereWithoutGalleryInput[] | No |
| deleteMany | ImageScalarWhereInput | ImageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutGalleryInput | LikeCreateWithoutGalleryInput[] | LikeUncheckedCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutGalleryInput | LikeCreateOrConnectWithoutGalleryInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutGalleryInput | LikeUpsertWithWhereUniqueWithoutGalleryInput[] | No |
| createMany | LikeCreateManyGalleryInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutGalleryInput | LikeUpdateWithWhereUniqueWithoutGalleryInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutGalleryInput | LikeUpdateManyWithWhereWithoutGalleryInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutGalleryInput | ShareCreateWithoutGalleryInput[] | ShareUncheckedCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutGalleryInput | ShareCreateOrConnectWithoutGalleryInput[] | No |
| upsert | ShareUpsertWithWhereUniqueWithoutGalleryInput | ShareUpsertWithWhereUniqueWithoutGalleryInput[] | No |
| createMany | ShareCreateManyGalleryInputEnvelope | No |
| set | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| disconnect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| delete | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| update | ShareUpdateWithWhereUniqueWithoutGalleryInput | ShareUpdateWithWhereUniqueWithoutGalleryInput[] | No |
| updateMany | ShareUpdateManyWithWhereWithoutGalleryInput | ShareUpdateManyWithWhereWithoutGalleryInput[] | No |
| deleteMany | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | BookCreateOrConnectWithoutGalleryInput | No |
| upsert | BookUpsertWithoutGalleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | BookWhereUniqueInput | No |
| update | BookUpdateWithoutGalleryInput | BookUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | CharacterCreateOrConnectWithoutGalleryInput | No |
| upsert | CharacterUpsertWithoutGalleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CharacterWhereUniqueInput | No |
| update | CharacterUpdateWithoutGalleryInput | CharacterUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | ChapterCreateOrConnectWithoutGalleryInput | No |
| upsert | ChapterUpsertWithoutGalleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ChapterWhereUniqueInput | No |
| update | ChapterUpdateWithoutGalleryInput | ChapterUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutGalleryInput | No |
| upsert | CommuneUpsertWithoutGalleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommuneWhereUniqueInput | No |
| update | CommuneUpdateWithoutGalleryInput | CommuneUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutGalleryInput | ImageCreateWithoutGalleryInput[] | ImageUncheckedCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | ImageCreateOrConnectWithoutGalleryInput | ImageCreateOrConnectWithoutGalleryInput[] | No |
| upsert | ImageUpsertWithWhereUniqueWithoutGalleryInput | ImageUpsertWithWhereUniqueWithoutGalleryInput[] | No |
| createMany | ImageCreateManyGalleryInputEnvelope | No |
| set | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| disconnect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| delete | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| connect | ImageWhereUniqueInput | ImageWhereUniqueInput[] | No |
| update | ImageUpdateWithWhereUniqueWithoutGalleryInput | ImageUpdateWithWhereUniqueWithoutGalleryInput[] | No |
| updateMany | ImageUpdateManyWithWhereWithoutGalleryInput | ImageUpdateManyWithWhereWithoutGalleryInput[] | No |
| deleteMany | ImageScalarWhereInput | ImageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutGalleryInput | LikeCreateWithoutGalleryInput[] | LikeUncheckedCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutGalleryInput | LikeCreateOrConnectWithoutGalleryInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutGalleryInput | LikeUpsertWithWhereUniqueWithoutGalleryInput[] | No |
| createMany | LikeCreateManyGalleryInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutGalleryInput | LikeUpdateWithWhereUniqueWithoutGalleryInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutGalleryInput | LikeUpdateManyWithWhereWithoutGalleryInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutGalleryInput | ShareCreateWithoutGalleryInput[] | ShareUncheckedCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutGalleryInput | ShareCreateOrConnectWithoutGalleryInput[] | No |
| upsert | ShareUpsertWithWhereUniqueWithoutGalleryInput | ShareUpsertWithWhereUniqueWithoutGalleryInput[] | No |
| createMany | ShareCreateManyGalleryInputEnvelope | No |
| set | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| disconnect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| delete | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| update | ShareUpdateWithWhereUniqueWithoutGalleryInput | ShareUpdateWithWhereUniqueWithoutGalleryInput[] | No |
| updateMany | ShareUpdateManyWithWhereWithoutGalleryInput | ShareUpdateManyWithWhereWithoutGalleryInput[] | No |
| deleteMany | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | BookCreateOrConnectWithoutGalleryInput | No |
| upsert | BookUpsertWithoutGalleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | BookWhereUniqueInput | No |
| update | BookUpdateWithoutGalleryInput | BookUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | CharacterCreateOrConnectWithoutGalleryInput | No |
| upsert | CharacterUpsertWithoutGalleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CharacterWhereUniqueInput | No |
| update | CharacterUpdateWithoutGalleryInput | CharacterUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput | No |
| connectOrCreate | ChapterCreateOrConnectWithoutGalleryInput | No |
| upsert | ChapterUpsertWithoutGalleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ChapterWhereUniqueInput | No |
| update | ChapterUpdateWithoutGalleryInput | ChapterUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutImagesInput | UserUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutImagesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutImagesInput | GalleryUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutImagesInput | No |
| connect | GalleryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutImagesInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutImageInput | LikeCreateWithoutImageInput[] | LikeUncheckedCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutImageInput | LikeCreateOrConnectWithoutImageInput[] | No |
| createMany | LikeCreateManyImageInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutImageInput | ShareCreateWithoutImageInput[] | ShareUncheckedCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutImageInput | ShareCreateOrConnectWithoutImageInput[] | No |
| createMany | ShareCreateManyImageInputEnvelope | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutImageInput | LikeCreateWithoutImageInput[] | LikeUncheckedCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutImageInput | LikeCreateOrConnectWithoutImageInput[] | No |
| createMany | LikeCreateManyImageInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutImageInput | ShareCreateWithoutImageInput[] | ShareUncheckedCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutImageInput | ShareCreateOrConnectWithoutImageInput[] | No |
| createMany | ShareCreateManyImageInputEnvelope | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutImagesInput | UserUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutImagesInput | No |
| upsert | UserUpsertWithoutImagesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutImagesInput | UserUncheckedUpdateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutImagesInput | GalleryUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutImagesInput | No |
| upsert | GalleryUpsertWithoutImagesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutImagesInput | GalleryUncheckedUpdateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutImagesInput | No |
| upsert | PostUpsertWithoutImagesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutImagesInput | PostUncheckedUpdateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutImageInput | LikeCreateWithoutImageInput[] | LikeUncheckedCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutImageInput | LikeCreateOrConnectWithoutImageInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutImageInput | LikeUpsertWithWhereUniqueWithoutImageInput[] | No |
| createMany | LikeCreateManyImageInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutImageInput | LikeUpdateWithWhereUniqueWithoutImageInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutImageInput | LikeUpdateManyWithWhereWithoutImageInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutImageInput | ShareCreateWithoutImageInput[] | ShareUncheckedCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutImageInput | ShareCreateOrConnectWithoutImageInput[] | No |
| upsert | ShareUpsertWithWhereUniqueWithoutImageInput | ShareUpsertWithWhereUniqueWithoutImageInput[] | No |
| createMany | ShareCreateManyImageInputEnvelope | No |
| set | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| disconnect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| delete | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| update | ShareUpdateWithWhereUniqueWithoutImageInput | ShareUpdateWithWhereUniqueWithoutImageInput[] | No |
| updateMany | ShareUpdateManyWithWhereWithoutImageInput | ShareUpdateManyWithWhereWithoutImageInput[] | No |
| deleteMany | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutImageInput | LikeCreateWithoutImageInput[] | LikeUncheckedCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutImageInput | LikeCreateOrConnectWithoutImageInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutImageInput | LikeUpsertWithWhereUniqueWithoutImageInput[] | No |
| createMany | LikeCreateManyImageInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutImageInput | LikeUpdateWithWhereUniqueWithoutImageInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutImageInput | LikeUpdateManyWithWhereWithoutImageInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShareCreateWithoutImageInput | ShareCreateWithoutImageInput[] | ShareUncheckedCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput[] | No |
| connectOrCreate | ShareCreateOrConnectWithoutImageInput | ShareCreateOrConnectWithoutImageInput[] | No |
| upsert | ShareUpsertWithWhereUniqueWithoutImageInput | ShareUpsertWithWhereUniqueWithoutImageInput[] | No |
| createMany | ShareCreateManyImageInputEnvelope | No |
| set | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| disconnect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| delete | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| connect | ShareWhereUniqueInput | ShareWhereUniqueInput[] | No |
| update | ShareUpdateWithWhereUniqueWithoutImageInput | ShareUpdateWithWhereUniqueWithoutImageInput[] | No |
| updateMany | ShareUpdateManyWithWhereWithoutImageInput | ShareUpdateManyWithWhereWithoutImageInput[] | No |
| deleteMany | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutLikesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutLikesInput | CommentUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutLikesInput | No |
| connect | CommentWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutLikesInput | GalleryUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutLikesInput | No |
| connect | GalleryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutLikesInput | ImageUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | ImageCreateOrConnectWithoutLikesInput | No |
| connect | ImageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutLikesInput | PostUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutLikesInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutLikesInput | CharacterUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | CharacterCreateOrConnectWithoutLikesInput | No |
| connect | CharacterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutLikesInput | BookUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | BookCreateOrConnectWithoutLikesInput | No |
| connect | BookWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutLikesInput | No |
| upsert | UserUpsertWithoutLikesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutLikesInput | UserUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutLikesInput | CommentUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | CommentCreateOrConnectWithoutLikesInput | No |
| upsert | CommentUpsertWithoutLikesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutLikesInput | CommentUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutLikesInput | GalleryUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutLikesInput | No |
| upsert | GalleryUpsertWithoutLikesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutLikesInput | GalleryUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutLikesInput | ImageUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | ImageCreateOrConnectWithoutLikesInput | No |
| upsert | ImageUpsertWithoutLikesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ImageWhereUniqueInput | No |
| update | ImageUpdateWithoutLikesInput | ImageUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutLikesInput | PostUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutLikesInput | No |
| upsert | PostUpsertWithoutLikesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutLikesInput | PostUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutLikesInput | CharacterUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | CharacterCreateOrConnectWithoutLikesInput | No |
| upsert | CharacterUpsertWithoutLikesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CharacterWhereUniqueInput | No |
| update | CharacterUpdateWithoutLikesInput | CharacterUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutLikesInput | BookUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | BookCreateOrConnectWithoutLikesInput | No |
| upsert | BookUpsertWithoutLikesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | BookWhereUniqueInput | No |
| update | BookUpdateWithoutLikesInput | BookUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSharesInput | UserUncheckedCreateWithoutSharesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSharesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutSharesInput | GalleryUncheckedCreateWithoutSharesInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutSharesInput | No |
| connect | GalleryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutSharesInput | ImageUncheckedCreateWithoutSharesInput | No |
| connectOrCreate | ImageCreateOrConnectWithoutSharesInput | No |
| connect | ImageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutSharesInput | PostUncheckedCreateWithoutSharesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutSharesInput | No |
| connect | PostWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSharesInput | UserUncheckedCreateWithoutSharesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSharesInput | No |
| upsert | UserUpsertWithoutSharesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutSharesInput | UserUncheckedUpdateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutSharesInput | GalleryUncheckedCreateWithoutSharesInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutSharesInput | No |
| upsert | GalleryUpsertWithoutSharesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutSharesInput | GalleryUncheckedUpdateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ImageCreateWithoutSharesInput | ImageUncheckedCreateWithoutSharesInput | No |
| connectOrCreate | ImageCreateOrConnectWithoutSharesInput | No |
| upsert | ImageUpsertWithoutSharesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ImageWhereUniqueInput | No |
| update | ImageUpdateWithoutSharesInput | ImageUncheckedUpdateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PostCreateWithoutSharesInput | PostUncheckedCreateWithoutSharesInput | No |
| connectOrCreate | PostCreateOrConnectWithoutSharesInput | No |
| upsert | PostUpsertWithoutSharesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PostWhereUniqueInput | No |
| update | PostUpdateWithoutSharesInput | PostUncheckedUpdateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowerInput | UserUncheckedCreateWithoutFollowerInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowerInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutFansInput | CharacterUncheckedCreateWithoutFansInput | No |
| connectOrCreate | CharacterCreateOrConnectWithoutFansInput | No |
| connect | CharacterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutFansInput | BookUncheckedCreateWithoutFansInput | No |
| connectOrCreate | BookCreateOrConnectWithoutFansInput | No |
| connect | BookWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowerInput | UserUncheckedCreateWithoutFollowerInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowerInput | No |
| upsert | UserUpsertWithoutFollowerInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFollowerInput | UserUncheckedUpdateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingInput | No |
| upsert | UserUpsertWithoutFollowingInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFollowingInput | UserUncheckedUpdateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutFansInput | CharacterUncheckedCreateWithoutFansInput | No |
| connectOrCreate | CharacterCreateOrConnectWithoutFansInput | No |
| upsert | CharacterUpsertWithoutFansInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CharacterWhereUniqueInput | No |
| update | CharacterUpdateWithoutFansInput | CharacterUncheckedUpdateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutFansInput | BookUncheckedCreateWithoutFansInput | No |
| connectOrCreate | BookCreateOrConnectWithoutFansInput | No |
| upsert | BookUpsertWithoutFansInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | BookWhereUniqueInput | No |
| update | BookUpdateWithoutFansInput | BookUncheckedUpdateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFanOfInput | UserUncheckedCreateWithoutFanOfInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFanOfInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFansInput | UserUncheckedCreateWithoutFansInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFansInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFanOfInput | UserUncheckedCreateWithoutFanOfInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFanOfInput | No |
| upsert | UserUpsertWithoutFanOfInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFanOfInput | UserUncheckedUpdateWithoutFanOfInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFansInput | UserUncheckedCreateWithoutFansInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFansInput | No |
| upsert | UserUpsertWithoutFansInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFansInput | UserUncheckedUpdateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutChatRoomInput | ChatMessageCreateWithoutChatRoomInput[] | ChatMessageUncheckedCreateWithoutChatRoomInput | ChatMessageUncheckedCreateWithoutChatRoomInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutChatRoomInput | ChatMessageCreateOrConnectWithoutChatRoomInput[] | No |
| createMany | ChatMessageCreateManyChatRoomInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatsInput | UserCreateWithoutChatsInput[] | UserUncheckedCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutChatsInput | UserCreateOrConnectWithoutChatsInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatMessageCreateWithoutChatRoomInput | ChatMessageCreateWithoutChatRoomInput[] | ChatMessageUncheckedCreateWithoutChatRoomInput | ChatMessageUncheckedCreateWithoutChatRoomInput[] | No |
| connectOrCreate | ChatMessageCreateOrConnectWithoutChatRoomInput | ChatMessageCreateOrConnectWithoutChatRoomInput[] | No |
| createMany | ChatMessageCreateManyChatRoomInputEnvelope | No |
| connect | ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatsInput | UserCreateWithoutChatsInput[] | UserUncheckedCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutChatsInput | UserCreateOrConnectWithoutChatsInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatsInput | UserCreateWithoutChatsInput[] | UserUncheckedCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutChatsInput | UserCreateOrConnectWithoutChatsInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutChatsInput | UserUpsertWithWhereUniqueWithoutChatsInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutChatsInput | UserUpdateWithWhereUniqueWithoutChatsInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutChatsInput | UserUpdateManyWithWhereWithoutChatsInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatsInput | UserCreateWithoutChatsInput[] | UserUncheckedCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutChatsInput | UserCreateOrConnectWithoutChatsInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutChatsInput | UserUpsertWithWhereUniqueWithoutChatsInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutChatsInput | UserUpdateWithWhereUniqueWithoutChatsInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutChatsInput | UserUpdateManyWithWhereWithoutChatsInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChatMessagesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatRoomCreateWithoutMessagesInput | ChatRoomUncheckedCreateWithoutMessagesInput | No |
| connectOrCreate | ChatRoomCreateOrConnectWithoutMessagesInput | No |
| connect | ChatRoomWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutChatMessagesInput | No |
| upsert | UserUpsertWithoutChatMessagesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutChatMessagesInput | UserUncheckedUpdateWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChatRoomCreateWithoutMessagesInput | ChatRoomUncheckedCreateWithoutMessagesInput | No |
| connectOrCreate | ChatRoomCreateOrConnectWithoutMessagesInput | No |
| upsert | ChatRoomUpsertWithoutMessagesInput | No |
| connect | ChatRoomWhereUniqueInput | No |
| update | ChatRoomUpdateWithoutMessagesInput | ChatRoomUncheckedUpdateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutBlockedThreadInput | BlockCreateWithoutBlockedThreadInput[] | BlockUncheckedCreateWithoutBlockedThreadInput | BlockUncheckedCreateWithoutBlockedThreadInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutBlockedThreadInput | BlockCreateOrConnectWithoutBlockedThreadInput[] | No |
| createMany | BlockCreateManyBlockedThreadInputEnvelope | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutThreadInput | CommentCreateWithoutThreadInput[] | CommentUncheckedCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutThreadInput | CommentCreateOrConnectWithoutThreadInput[] | No |
| createMany | CommentCreateManyThreadInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutThreadInput | No |
| connect | CommuneWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BlockCreateWithoutBlockedThreadInput | BlockCreateWithoutBlockedThreadInput[] | BlockUncheckedCreateWithoutBlockedThreadInput | BlockUncheckedCreateWithoutBlockedThreadInput[] | No |
| connectOrCreate | BlockCreateOrConnectWithoutBlockedThreadInput | BlockCreateOrConnectWithoutBlockedThreadInput[] | No |
| createMany | BlockCreateManyBlockedThreadInputEnvelope | No |
| connect | BlockWhereUniqueInput | BlockWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutThreadInput | CommentCreateWithoutThreadInput[] | CommentUncheckedCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutThreadInput | CommentCreateOrConnectWithoutThreadInput[] | No |
| createMany | CommentCreateManyThreadInputEnvelope | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutThreadInput | No |
| connect | CommuneWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Entity | No |
| Name | Type | Nullable |
|---|---|---|
| set | Role | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutThreadInput | CommentCreateWithoutThreadInput[] | CommentUncheckedCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutThreadInput | CommentCreateOrConnectWithoutThreadInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutThreadInput | CommentUpsertWithWhereUniqueWithoutThreadInput[] | No |
| createMany | CommentCreateManyThreadInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutThreadInput | CommentUpdateWithWhereUniqueWithoutThreadInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutThreadInput | CommentUpdateManyWithWhereWithoutThreadInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutThreadInput | No |
| upsert | CommuneUpsertWithoutThreadInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommuneWhereUniqueInput | No |
| update | CommuneUpdateWithoutThreadInput | CommuneUncheckedUpdateWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentCreateWithoutThreadInput | CommentCreateWithoutThreadInput[] | CommentUncheckedCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput[] | No |
| connectOrCreate | CommentCreateOrConnectWithoutThreadInput | CommentCreateOrConnectWithoutThreadInput[] | No |
| upsert | CommentUpsertWithWhereUniqueWithoutThreadInput | CommentUpsertWithWhereUniqueWithoutThreadInput[] | No |
| createMany | CommentCreateManyThreadInputEnvelope | No |
| set | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| disconnect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| delete | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| connect | CommentWhereUniqueInput | CommentWhereUniqueInput[] | No |
| update | CommentUpdateWithWhereUniqueWithoutThreadInput | CommentUpdateWithWhereUniqueWithoutThreadInput[] | No |
| updateMany | CommentUpdateManyWithWhereWithoutThreadInput | CommentUpdateManyWithWhereWithoutThreadInput[] | No |
| deleteMany | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutThreadInput | No |
| upsert | CommuneUpsertWithoutThreadInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommuneWhereUniqueInput | No |
| update | CommuneUpdateWithoutThreadInput | CommuneUncheckedUpdateWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentThreadCreateWithoutCommentsInput | CommentThreadUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | CommentThreadCreateOrConnectWithoutCommentsInput | No |
| connect | CommentThreadWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutCommentInput | LikeCreateWithoutCommentInput[] | LikeUncheckedCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutCommentInput | LikeCreateOrConnectWithoutCommentInput[] | No |
| createMany | LikeCreateManyCommentInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutCommentInput | LikeCreateWithoutCommentInput[] | LikeUncheckedCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutCommentInput | LikeCreateOrConnectWithoutCommentInput[] | No |
| createMany | LikeCreateManyCommentInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommentsInput | No |
| upsert | UserUpsertWithoutCommentsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentThreadCreateWithoutCommentsInput | CommentThreadUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | CommentThreadCreateOrConnectWithoutCommentsInput | No |
| upsert | CommentThreadUpsertWithoutCommentsInput | No |
| connect | CommentThreadWhereUniqueInput | No |
| update | CommentThreadUpdateWithoutCommentsInput | CommentThreadUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutCommentInput | LikeCreateWithoutCommentInput[] | LikeUncheckedCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutCommentInput | LikeCreateOrConnectWithoutCommentInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutCommentInput | LikeUpsertWithWhereUniqueWithoutCommentInput[] | No |
| createMany | LikeCreateManyCommentInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutCommentInput | LikeUpdateWithWhereUniqueWithoutCommentInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutCommentInput | LikeUpdateManyWithWhereWithoutCommentInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutCommentInput | LikeCreateWithoutCommentInput[] | LikeUncheckedCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutCommentInput | LikeCreateOrConnectWithoutCommentInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutCommentInput | LikeUpsertWithWhereUniqueWithoutCommentInput[] | No |
| createMany | LikeCreateManyCommentInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutCommentInput | LikeUpdateWithWhereUniqueWithoutCommentInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutCommentInput | LikeUpdateManyWithWhereWithoutCommentInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutCommuneInput | GalleryUncheckedCreateWithoutCommuneInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutCommuneInput | No |
| connect | GalleryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutOwnedCommunesInput | UserUncheckedCreateWithoutOwnedCommunesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutOwnedCommunesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentThreadCreateWithoutCommuneInput | CommentThreadUncheckedCreateWithoutCommuneInput | No |
| connectOrCreate | CommentThreadCreateOrConnectWithoutCommuneInput | No |
| connect | CommentThreadWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneUserCreateWithoutCommuneInput | CommuneUserCreateWithoutCommuneInput[] | CommuneUserUncheckedCreateWithoutCommuneInput | CommuneUserUncheckedCreateWithoutCommuneInput[] | No |
| connectOrCreate | CommuneUserCreateOrConnectWithoutCommuneInput | CommuneUserCreateOrConnectWithoutCommuneInput[] | No |
| createMany | CommuneUserCreateManyCommuneInputEnvelope | No |
| connect | CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneUserCreateWithoutCommuneInput | CommuneUserCreateWithoutCommuneInput[] | CommuneUserUncheckedCreateWithoutCommuneInput | CommuneUserUncheckedCreateWithoutCommuneInput[] | No |
| connectOrCreate | CommuneUserCreateOrConnectWithoutCommuneInput | CommuneUserCreateOrConnectWithoutCommuneInput[] | No |
| createMany | CommuneUserCreateManyCommuneInputEnvelope | No |
| connect | CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutCommuneInput | GalleryUncheckedCreateWithoutCommuneInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutCommuneInput | No |
| upsert | GalleryUpsertWithoutCommuneInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutCommuneInput | GalleryUncheckedUpdateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutOwnedCommunesInput | UserUncheckedCreateWithoutOwnedCommunesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutOwnedCommunesInput | No |
| upsert | UserUpsertWithoutOwnedCommunesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutOwnedCommunesInput | UserUncheckedUpdateWithoutOwnedCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentThreadCreateWithoutCommuneInput | CommentThreadUncheckedCreateWithoutCommuneInput | No |
| connectOrCreate | CommentThreadCreateOrConnectWithoutCommuneInput | No |
| upsert | CommentThreadUpsertWithoutCommuneInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommentThreadWhereUniqueInput | No |
| update | CommentThreadUpdateWithoutCommuneInput | CommentThreadUncheckedUpdateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutUsersInput | CommuneUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutUsersInput | No |
| connect | CommuneWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommunesInput | UserUncheckedCreateWithoutCommunesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommunesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommuneCreateWithoutUsersInput | CommuneUncheckedCreateWithoutUsersInput | No |
| connectOrCreate | CommuneCreateOrConnectWithoutUsersInput | No |
| upsert | CommuneUpsertWithoutUsersInput | No |
| connect | CommuneWhereUniqueInput | No |
| update | CommuneUpdateWithoutUsersInput | CommuneUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCommunesInput | UserUncheckedCreateWithoutCommunesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCommunesInput | No |
| upsert | UserUpsertWithoutCommunesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutCommunesInput | UserUncheckedUpdateWithoutCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput | No |
| connectOrCreate | UserCreateOrConnectWithoutMembershipInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput | No |
| connectOrCreate | UserCreateOrConnectWithoutMembershipInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Audience | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput | No |
| connectOrCreate | UserCreateOrConnectWithoutMembershipInput | No |
| upsert | UserUpsertWithoutMembershipInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutMembershipInput | UserUncheckedUpdateWithoutMembershipInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput | No |
| connectOrCreate | UserCreateOrConnectWithoutMembershipInput | No |
| upsert | UserUpsertWithoutMembershipInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutMembershipInput | UserUncheckedUpdateWithoutMembershipInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutGenreInput | BookCreateWithoutGenreInput[] | BookUncheckedCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutGenreInput | BookCreateOrConnectWithoutGenreInput[] | No |
| createMany | BookCreateManyGenreInputEnvelope | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CoversCreateWithoutGenreInput | CoversCreateWithoutGenreInput[] | CoversUncheckedCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput[] | No |
| connectOrCreate | CoversCreateOrConnectWithoutGenreInput | CoversCreateOrConnectWithoutGenreInput[] | No |
| createMany | CoversCreateManyGenreInputEnvelope | No |
| connect | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutGenreInput | BookCreateWithoutGenreInput[] | BookUncheckedCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutGenreInput | BookCreateOrConnectWithoutGenreInput[] | No |
| createMany | BookCreateManyGenreInputEnvelope | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CoversCreateWithoutGenreInput | CoversCreateWithoutGenreInput[] | CoversUncheckedCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput[] | No |
| connectOrCreate | CoversCreateOrConnectWithoutGenreInput | CoversCreateOrConnectWithoutGenreInput[] | No |
| createMany | CoversCreateManyGenreInputEnvelope | No |
| connect | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutGenreInput | BookCreateWithoutGenreInput[] | BookUncheckedCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutGenreInput | BookCreateOrConnectWithoutGenreInput[] | No |
| upsert | BookUpsertWithWhereUniqueWithoutGenreInput | BookUpsertWithWhereUniqueWithoutGenreInput[] | No |
| createMany | BookCreateManyGenreInputEnvelope | No |
| set | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| disconnect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| delete | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| update | BookUpdateWithWhereUniqueWithoutGenreInput | BookUpdateWithWhereUniqueWithoutGenreInput[] | No |
| updateMany | BookUpdateManyWithWhereWithoutGenreInput | BookUpdateManyWithWhereWithoutGenreInput[] | No |
| deleteMany | BookScalarWhereInput | BookScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CoversCreateWithoutGenreInput | CoversCreateWithoutGenreInput[] | CoversUncheckedCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput[] | No |
| connectOrCreate | CoversCreateOrConnectWithoutGenreInput | CoversCreateOrConnectWithoutGenreInput[] | No |
| upsert | CoversUpsertWithWhereUniqueWithoutGenreInput | CoversUpsertWithWhereUniqueWithoutGenreInput[] | No |
| createMany | CoversCreateManyGenreInputEnvelope | No |
| set | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| disconnect | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| delete | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| connect | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| update | CoversUpdateWithWhereUniqueWithoutGenreInput | CoversUpdateWithWhereUniqueWithoutGenreInput[] | No |
| updateMany | CoversUpdateManyWithWhereWithoutGenreInput | CoversUpdateManyWithWhereWithoutGenreInput[] | No |
| deleteMany | CoversScalarWhereInput | CoversScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutGenreInput | BookCreateWithoutGenreInput[] | BookUncheckedCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutGenreInput | BookCreateOrConnectWithoutGenreInput[] | No |
| upsert | BookUpsertWithWhereUniqueWithoutGenreInput | BookUpsertWithWhereUniqueWithoutGenreInput[] | No |
| createMany | BookCreateManyGenreInputEnvelope | No |
| set | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| disconnect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| delete | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| update | BookUpdateWithWhereUniqueWithoutGenreInput | BookUpdateWithWhereUniqueWithoutGenreInput[] | No |
| updateMany | BookUpdateManyWithWhereWithoutGenreInput | BookUpdateManyWithWhereWithoutGenreInput[] | No |
| deleteMany | BookScalarWhereInput | BookScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CoversCreateWithoutGenreInput | CoversCreateWithoutGenreInput[] | CoversUncheckedCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput[] | No |
| connectOrCreate | CoversCreateOrConnectWithoutGenreInput | CoversCreateOrConnectWithoutGenreInput[] | No |
| upsert | CoversUpsertWithWhereUniqueWithoutGenreInput | CoversUpsertWithWhereUniqueWithoutGenreInput[] | No |
| createMany | CoversCreateManyGenreInputEnvelope | No |
| set | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| disconnect | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| delete | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| connect | CoversWhereUniqueInput | CoversWhereUniqueInput[] | No |
| update | CoversUpdateWithWhereUniqueWithoutGenreInput | CoversUpdateWithWhereUniqueWithoutGenreInput[] | No |
| updateMany | CoversUpdateManyWithWhereWithoutGenreInput | CoversUpdateManyWithWhereWithoutGenreInput[] | No |
| deleteMany | CoversScalarWhereInput | CoversScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GenreCreateWithoutCoversInput | GenreUncheckedCreateWithoutCoversInput | No |
| connectOrCreate | GenreCreateOrConnectWithoutCoversInput | No |
| connect | GenreWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GenreCreateWithoutCoversInput | GenreUncheckedCreateWithoutCoversInput | No |
| connectOrCreate | GenreCreateOrConnectWithoutCoversInput | No |
| upsert | GenreUpsertWithoutCoversInput | No |
| connect | GenreWhereUniqueInput | No |
| update | GenreUpdateWithoutCoversInput | GenreUncheckedUpdateWithoutCoversInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutCategoriesInput | BookCreateWithoutCategoriesInput[] | BookUncheckedCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutCategoriesInput | BookCreateOrConnectWithoutCategoriesInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutCategoriesInput | BookCreateWithoutCategoriesInput[] | BookUncheckedCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutCategoriesInput | BookCreateOrConnectWithoutCategoriesInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutCategoriesInput | BookCreateWithoutCategoriesInput[] | BookUncheckedCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutCategoriesInput | BookCreateOrConnectWithoutCategoriesInput[] | No |
| upsert | BookUpsertWithWhereUniqueWithoutCategoriesInput | BookUpsertWithWhereUniqueWithoutCategoriesInput[] | No |
| set | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| disconnect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| delete | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| update | BookUpdateWithWhereUniqueWithoutCategoriesInput | BookUpdateWithWhereUniqueWithoutCategoriesInput[] | No |
| updateMany | BookUpdateManyWithWhereWithoutCategoriesInput | BookUpdateManyWithWhereWithoutCategoriesInput[] | No |
| deleteMany | BookScalarWhereInput | BookScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutCategoriesInput | BookCreateWithoutCategoriesInput[] | BookUncheckedCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutCategoriesInput | BookCreateOrConnectWithoutCategoriesInput[] | No |
| upsert | BookUpsertWithWhereUniqueWithoutCategoriesInput | BookUpsertWithWhereUniqueWithoutCategoriesInput[] | No |
| set | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| disconnect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| delete | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| update | BookUpdateWithWhereUniqueWithoutCategoriesInput | BookUpdateWithWhereUniqueWithoutCategoriesInput[] | No |
| updateMany | BookUpdateManyWithWhereWithoutCategoriesInput | BookUpdateManyWithWhereWithoutCategoriesInput[] | No |
| deleteMany | BookScalarWhereInput | BookScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GenreCreateWithoutBooksInput | GenreUncheckedCreateWithoutBooksInput | No |
| connectOrCreate | GenreCreateOrConnectWithoutBooksInput | No |
| connect | GenreWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBooksInput | UserCreateWithoutBooksInput[] | UserUncheckedCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutBooksInput | UserCreateOrConnectWithoutBooksInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutBookInput | ChapterCreateWithoutBookInput[] | ChapterUncheckedCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | ChapterCreateOrConnectWithoutBookInput | ChapterCreateOrConnectWithoutBookInput[] | No |
| createMany | ChapterCreateManyBookInputEnvelope | No |
| connect | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutBooksInput | CharacterCreateWithoutBooksInput[] | CharacterUncheckedCreateWithoutBooksInput | CharacterUncheckedCreateWithoutBooksInput[] | No |
| connectOrCreate | CharacterCreateOrConnectWithoutBooksInput | CharacterCreateOrConnectWithoutBooksInput[] | No |
| connect | CharacterWhereUniqueInput | CharacterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutBook_galleryInput | GalleryUncheckedCreateWithoutBook_galleryInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutBook_galleryInput | No |
| connect | GalleryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutBookInput | FollowCreateWithoutBookInput[] | FollowUncheckedCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutBookInput | FollowCreateOrConnectWithoutBookInput[] | No |
| createMany | FollowCreateManyBookInputEnvelope | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutBookInput | LikeCreateWithoutBookInput[] | LikeUncheckedCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutBookInput | LikeCreateOrConnectWithoutBookInput[] | No |
| createMany | LikeCreateManyBookInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBooksInput | UserCreateWithoutBooksInput[] | UserUncheckedCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutBooksInput | UserCreateOrConnectWithoutBooksInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutBookInput | ChapterCreateWithoutBookInput[] | ChapterUncheckedCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | ChapterCreateOrConnectWithoutBookInput | ChapterCreateOrConnectWithoutBookInput[] | No |
| createMany | ChapterCreateManyBookInputEnvelope | No |
| connect | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutBooksInput | CharacterCreateWithoutBooksInput[] | CharacterUncheckedCreateWithoutBooksInput | CharacterUncheckedCreateWithoutBooksInput[] | No |
| connectOrCreate | CharacterCreateOrConnectWithoutBooksInput | CharacterCreateOrConnectWithoutBooksInput[] | No |
| connect | CharacterWhereUniqueInput | CharacterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutBookInput | FollowCreateWithoutBookInput[] | FollowUncheckedCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutBookInput | FollowCreateOrConnectWithoutBookInput[] | No |
| createMany | FollowCreateManyBookInputEnvelope | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutBookInput | LikeCreateWithoutBookInput[] | LikeUncheckedCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutBookInput | LikeCreateOrConnectWithoutBookInput[] | No |
| createMany | LikeCreateManyBookInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | BookStatus | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | GenreCreateWithoutBooksInput | GenreUncheckedCreateWithoutBooksInput | No |
| connectOrCreate | GenreCreateOrConnectWithoutBooksInput | No |
| upsert | GenreUpsertWithoutBooksInput | No |
| connect | GenreWhereUniqueInput | No |
| update | GenreUpdateWithoutBooksInput | GenreUncheckedUpdateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBooksInput | UserCreateWithoutBooksInput[] | UserUncheckedCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutBooksInput | UserCreateOrConnectWithoutBooksInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutBooksInput | UserUpsertWithWhereUniqueWithoutBooksInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutBooksInput | UserUpdateWithWhereUniqueWithoutBooksInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutBooksInput | UserUpdateManyWithWhereWithoutBooksInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutBookInput | ChapterCreateWithoutBookInput[] | ChapterUncheckedCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | ChapterCreateOrConnectWithoutBookInput | ChapterCreateOrConnectWithoutBookInput[] | No |
| upsert | ChapterUpsertWithWhereUniqueWithoutBookInput | ChapterUpsertWithWhereUniqueWithoutBookInput[] | No |
| createMany | ChapterCreateManyBookInputEnvelope | No |
| set | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| disconnect | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| delete | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| connect | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| update | ChapterUpdateWithWhereUniqueWithoutBookInput | ChapterUpdateWithWhereUniqueWithoutBookInput[] | No |
| updateMany | ChapterUpdateManyWithWhereWithoutBookInput | ChapterUpdateManyWithWhereWithoutBookInput[] | No |
| deleteMany | ChapterScalarWhereInput | ChapterScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutBook_galleryInput | GalleryUncheckedCreateWithoutBook_galleryInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutBook_galleryInput | No |
| upsert | GalleryUpsertWithoutBook_galleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutBook_galleryInput | GalleryUncheckedUpdateWithoutBook_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutBookInput | FollowCreateWithoutBookInput[] | FollowUncheckedCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutBookInput | FollowCreateOrConnectWithoutBookInput[] | No |
| upsert | FollowUpsertWithWhereUniqueWithoutBookInput | FollowUpsertWithWhereUniqueWithoutBookInput[] | No |
| createMany | FollowCreateManyBookInputEnvelope | No |
| set | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| disconnect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| delete | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| update | FollowUpdateWithWhereUniqueWithoutBookInput | FollowUpdateWithWhereUniqueWithoutBookInput[] | No |
| updateMany | FollowUpdateManyWithWhereWithoutBookInput | FollowUpdateManyWithWhereWithoutBookInput[] | No |
| deleteMany | FollowScalarWhereInput | FollowScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutBookInput | LikeCreateWithoutBookInput[] | LikeUncheckedCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutBookInput | LikeCreateOrConnectWithoutBookInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutBookInput | LikeUpsertWithWhereUniqueWithoutBookInput[] | No |
| createMany | LikeCreateManyBookInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutBookInput | LikeUpdateWithWhereUniqueWithoutBookInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutBookInput | LikeUpdateManyWithWhereWithoutBookInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBooksInput | UserCreateWithoutBooksInput[] | UserUncheckedCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutBooksInput | UserCreateOrConnectWithoutBooksInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutBooksInput | UserUpsertWithWhereUniqueWithoutBooksInput[] | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutBooksInput | UserUpdateWithWhereUniqueWithoutBooksInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutBooksInput | UserUpdateManyWithWhereWithoutBooksInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutBookInput | ChapterCreateWithoutBookInput[] | ChapterUncheckedCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | ChapterCreateOrConnectWithoutBookInput | ChapterCreateOrConnectWithoutBookInput[] | No |
| upsert | ChapterUpsertWithWhereUniqueWithoutBookInput | ChapterUpsertWithWhereUniqueWithoutBookInput[] | No |
| createMany | ChapterCreateManyBookInputEnvelope | No |
| set | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| disconnect | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| delete | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| connect | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| update | ChapterUpdateWithWhereUniqueWithoutBookInput | ChapterUpdateWithWhereUniqueWithoutBookInput[] | No |
| updateMany | ChapterUpdateManyWithWhereWithoutBookInput | ChapterUpdateManyWithWhereWithoutBookInput[] | No |
| deleteMany | ChapterScalarWhereInput | ChapterScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutBookInput | FollowCreateWithoutBookInput[] | FollowUncheckedCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutBookInput | FollowCreateOrConnectWithoutBookInput[] | No |
| upsert | FollowUpsertWithWhereUniqueWithoutBookInput | FollowUpsertWithWhereUniqueWithoutBookInput[] | No |
| createMany | FollowCreateManyBookInputEnvelope | No |
| set | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| disconnect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| delete | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| update | FollowUpdateWithWhereUniqueWithoutBookInput | FollowUpdateWithWhereUniqueWithoutBookInput[] | No |
| updateMany | FollowUpdateManyWithWhereWithoutBookInput | FollowUpdateManyWithWhereWithoutBookInput[] | No |
| deleteMany | FollowScalarWhereInput | FollowScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutBookInput | LikeCreateWithoutBookInput[] | LikeUncheckedCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutBookInput | LikeCreateOrConnectWithoutBookInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutBookInput | LikeUpsertWithWhereUniqueWithoutBookInput[] | No |
| createMany | LikeCreateManyBookInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutBookInput | LikeUpdateWithWhereUniqueWithoutBookInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutBookInput | LikeUpdateManyWithWhereWithoutBookInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutCharacterInput | LikeCreateWithoutCharacterInput[] | LikeUncheckedCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutCharacterInput | LikeCreateOrConnectWithoutCharacterInput[] | No |
| createMany | LikeCreateManyCharacterInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutCharacterInput | FollowCreateWithoutCharacterInput[] | FollowUncheckedCreateWithoutCharacterInput | FollowUncheckedCreateWithoutCharacterInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutCharacterInput | FollowCreateOrConnectWithoutCharacterInput[] | No |
| createMany | FollowCreateManyCharacterInputEnvelope | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutCharactersInput | BookCreateWithoutCharactersInput[] | BookUncheckedCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutCharactersInput | BookCreateOrConnectWithoutCharactersInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutCharactersInput | ChapterCreateWithoutCharactersInput[] | ChapterUncheckedCreateWithoutCharactersInput | ChapterUncheckedCreateWithoutCharactersInput[] | No |
| connectOrCreate | ChapterCreateOrConnectWithoutCharactersInput | ChapterCreateOrConnectWithoutCharactersInput[] | No |
| connect | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutCharacter_galleryInput | GalleryUncheckedCreateWithoutCharacter_galleryInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutCharacter_galleryInput | No |
| connect | GalleryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutCharacterInput | LikeCreateWithoutCharacterInput[] | LikeUncheckedCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutCharacterInput | LikeCreateOrConnectWithoutCharacterInput[] | No |
| createMany | LikeCreateManyCharacterInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowCreateWithoutCharacterInput | FollowCreateWithoutCharacterInput[] | FollowUncheckedCreateWithoutCharacterInput | FollowUncheckedCreateWithoutCharacterInput[] | No |
| connectOrCreate | FollowCreateOrConnectWithoutCharacterInput | FollowCreateOrConnectWithoutCharacterInput[] | No |
| createMany | FollowCreateManyCharacterInputEnvelope | No |
| connect | FollowWhereUniqueInput | FollowWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutCharactersInput | BookCreateWithoutCharactersInput[] | BookUncheckedCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutCharactersInput | BookCreateOrConnectWithoutCharactersInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ChapterCreateWithoutCharactersInput | ChapterCreateWithoutCharactersInput[] | ChapterUncheckedCreateWithoutCharactersInput | ChapterUncheckedCreateWithoutCharactersInput[] | No |
| connectOrCreate | ChapterCreateOrConnectWithoutCharactersInput | ChapterCreateOrConnectWithoutCharactersInput[] | No |
| connect | ChapterWhereUniqueInput | ChapterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutCharacterInput | LikeCreateWithoutCharacterInput[] | LikeUncheckedCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutCharacterInput | LikeCreateOrConnectWithoutCharacterInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutCharacterInput | LikeUpsertWithWhereUniqueWithoutCharacterInput[] | No |
| createMany | LikeCreateManyCharacterInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutCharacterInput | LikeUpdateWithWhereUniqueWithoutCharacterInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutCharacterInput | LikeUpdateManyWithWhereWithoutCharacterInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutCharactersInput | BookCreateWithoutCharactersInput[] | BookUncheckedCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutCharactersInput | BookCreateOrConnectWithoutCharactersInput[] | No |
| upsert | BookUpsertWithWhereUniqueWithoutCharactersInput | BookUpsertWithWhereUniqueWithoutCharactersInput[] | No |
| set | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| disconnect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| delete | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| update | BookUpdateWithWhereUniqueWithoutCharactersInput | BookUpdateWithWhereUniqueWithoutCharactersInput[] | No |
| updateMany | BookUpdateManyWithWhereWithoutCharactersInput | BookUpdateManyWithWhereWithoutCharactersInput[] | No |
| deleteMany | BookScalarWhereInput | BookScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutCharacter_galleryInput | GalleryUncheckedCreateWithoutCharacter_galleryInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutCharacter_galleryInput | No |
| upsert | GalleryUpsertWithoutCharacter_galleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutCharacter_galleryInput | GalleryUncheckedUpdateWithoutCharacter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutCharacterInput | LikeCreateWithoutCharacterInput[] | LikeUncheckedCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutCharacterInput | LikeCreateOrConnectWithoutCharacterInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutCharacterInput | LikeUpsertWithWhereUniqueWithoutCharacterInput[] | No |
| createMany | LikeCreateManyCharacterInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutCharacterInput | LikeUpdateWithWhereUniqueWithoutCharacterInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutCharacterInput | LikeUpdateManyWithWhereWithoutCharacterInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutCharactersInput | BookCreateWithoutCharactersInput[] | BookUncheckedCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput[] | No |
| connectOrCreate | BookCreateOrConnectWithoutCharactersInput | BookCreateOrConnectWithoutCharactersInput[] | No |
| upsert | BookUpsertWithWhereUniqueWithoutCharactersInput | BookUpsertWithWhereUniqueWithoutCharactersInput[] | No |
| set | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| disconnect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| delete | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| connect | BookWhereUniqueInput | BookWhereUniqueInput[] | No |
| update | BookUpdateWithWhereUniqueWithoutCharactersInput | BookUpdateWithWhereUniqueWithoutCharactersInput[] | No |
| updateMany | BookUpdateManyWithWhereWithoutCharactersInput | BookUpdateManyWithWhereWithoutCharactersInput[] | No |
| deleteMany | BookScalarWhereInput | BookScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutChaptersInput | CharacterCreateWithoutChaptersInput[] | CharacterUncheckedCreateWithoutChaptersInput | CharacterUncheckedCreateWithoutChaptersInput[] | No |
| connectOrCreate | CharacterCreateOrConnectWithoutChaptersInput | CharacterCreateOrConnectWithoutChaptersInput[] | No |
| connect | CharacterWhereUniqueInput | CharacterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutChaptersInput | BookUncheckedCreateWithoutChaptersInput | No |
| connectOrCreate | BookCreateOrConnectWithoutChaptersInput | No |
| connect | BookWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutChapter_galleryInput | GalleryUncheckedCreateWithoutChapter_galleryInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutChapter_galleryInput | No |
| connect | GalleryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CharacterCreateWithoutChaptersInput | CharacterCreateWithoutChaptersInput[] | CharacterUncheckedCreateWithoutChaptersInput | CharacterUncheckedCreateWithoutChaptersInput[] | No |
| connectOrCreate | CharacterCreateOrConnectWithoutChaptersInput | CharacterCreateOrConnectWithoutChaptersInput[] | No |
| connect | CharacterWhereUniqueInput | CharacterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookCreateWithoutChaptersInput | BookUncheckedCreateWithoutChaptersInput | No |
| connectOrCreate | BookCreateOrConnectWithoutChaptersInput | No |
| upsert | BookUpsertWithoutChaptersInput | No |
| connect | BookWhereUniqueInput | No |
| update | BookUpdateWithoutChaptersInput | BookUncheckedUpdateWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutChapter_galleryInput | GalleryUncheckedCreateWithoutChapter_galleryInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutChapter_galleryInput | No |
| upsert | GalleryUpsertWithoutChapter_galleryInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutChapter_galleryInput | GalleryUncheckedUpdateWithoutChapter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBlockingInput | UserUncheckedCreateWithoutBlockingInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBlockingInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutBlockingInput | GalleryUncheckedCreateWithoutBlockingInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutBlockingInput | No |
| connect | GalleryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentThreadCreateWithoutBlockedInput | CommentThreadUncheckedCreateWithoutBlockedInput | No |
| connectOrCreate | CommentThreadCreateOrConnectWithoutBlockedInput | No |
| connect | CommentThreadWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBlockedInput | UserUncheckedCreateWithoutBlockedInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBlockedInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Entity | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBlockingInput | UserUncheckedCreateWithoutBlockingInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBlockingInput | No |
| upsert | UserUpsertWithoutBlockingInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutBlockingInput | UserUncheckedUpdateWithoutBlockingInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | GalleryCreateWithoutBlockingInput | GalleryUncheckedCreateWithoutBlockingInput | No |
| connectOrCreate | GalleryCreateOrConnectWithoutBlockingInput | No |
| upsert | GalleryUpsertWithoutBlockingInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutBlockingInput | GalleryUncheckedUpdateWithoutBlockingInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CommentThreadCreateWithoutBlockedInput | CommentThreadUncheckedCreateWithoutBlockedInput | No |
| connectOrCreate | CommentThreadCreateOrConnectWithoutBlockedInput | No |
| upsert | CommentThreadUpsertWithoutBlockedInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CommentThreadWhereUniqueInput | No |
| update | CommentThreadUpdateWithoutBlockedInput | CommentThreadUncheckedUpdateWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBlockedInput | UserUncheckedCreateWithoutBlockedInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBlockedInput | No |
| upsert | UserUpsertWithoutBlockedInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutBlockedInput | UserUncheckedUpdateWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| upsert | UserUpsertWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| upsert | UserUpsertWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | No |
| notIn | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | Null | Yes |
| notIn | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | Null | Yes |
| notIn | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | No |
| notIn | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Audience | No |
| in | Audience[] | No |
| notIn | Audience[] | No |
| not | Audience | NestedEnumAudienceFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Audience | No |
| in | Audience[] | No |
| notIn | Audience[] | No |
| not | Audience | NestedEnumAudienceWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAudienceFilter | No |
| _max | NestedEnumAudienceFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | No |
| notIn | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | No |
| notIn | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Null | Yes |
| notIn | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | Null | Yes |
| in | Float | Null | Yes |
| notIn | Float | Null | Yes |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Entity | No |
| in | Entity[] | No |
| notIn | Entity[] | No |
| not | Entity | NestedEnumEntityFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Role | No |
| in | Role[] | No |
| notIn | Role[] | No |
| not | Role | NestedEnumRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Entity | No |
| in | Entity[] | No |
| notIn | Entity[] | No |
| not | Entity | NestedEnumEntityWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumEntityFilter | No |
| _max | NestedEnumEntityFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Role | No |
| in | Role[] | No |
| notIn | Role[] | No |
| not | Role | NestedEnumRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumRoleFilter | No |
| _max | NestedEnumRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Audience | Null | Yes |
| in | Audience[] | Null | Yes |
| notIn | Audience[] | Null | Yes |
| not | Audience | NestedEnumAudienceNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Audience | Null | Yes |
| in | Audience[] | Null | Yes |
| notIn | Audience[] | Null | Yes |
| not | Audience | NestedEnumAudienceNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumAudienceNullableFilter | No |
| _max | NestedEnumAudienceNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BookStatus | Null | Yes |
| in | BookStatus[] | Null | Yes |
| notIn | BookStatus[] | Null | Yes |
| not | BookStatus | NestedEnumBookStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | BookStatus | Null | Yes |
| in | BookStatus[] | Null | Yes |
| notIn | BookStatus[] | Null | Yes |
| not | BookStatus | NestedEnumBookStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumBookStatusNullableFilter | No |
| _max | NestedEnumBookStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Entity | Null | Yes |
| in | Entity[] | Null | Yes |
| notIn | Entity[] | Null | Yes |
| not | Entity | NestedEnumEntityNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Entity | Null | Yes |
| in | Entity[] | Null | Yes |
| notIn | Entity[] | Null | Yes |
| not | Entity | NestedEnumEntityNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumEntityNullableFilter | No |
| _max | NestedEnumEntityNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| oauth_token | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| oauth_token | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AccountCreateManyUserInput | AccountCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedGallery | GalleryCreateNestedOneWithoutBlockingInput | No |
| blockedThread | CommentThreadCreateNestedOneWithoutBlockedInput | No |
| user | UserCreateNestedOneWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| create | BlockCreateWithoutBlockedUserInput | BlockUncheckedCreateWithoutBlockedUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BlockCreateManyBlockedUserInput | BlockCreateManyBlockedUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedUser | UserCreateNestedOneWithoutBlockingInput | No |
| blockedGallery | GalleryCreateNestedOneWithoutBlockingInput | No |
| blockedThread | CommentThreadCreateNestedOneWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedId | String | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| create | BlockCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BlockCreateManyUserInput | BlockCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| content | String | No |
| chatRoom | ChatRoomCreateNestedOneWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| chatRoomId | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| create | ChatMessageCreateWithoutAuthorInput | ChatMessageUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatMessageCreateManyAuthorInput | ChatMessageCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| content | String | No |
| visible | Boolean | No |
| thread | CommentThreadCreateNestedOneWithoutCommentsInput | No |
| likes | LikeCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| threadId | String | No |
| content | String | No |
| visible | Boolean | No |
| likes | LikeUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyAuthorInput | CommentCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| gallery | GalleryCreateNestedOneWithoutCommuneInput | No |
| thread | CommentThreadCreateNestedOneWithoutCommuneInput | No |
| users | CommuneUserCreateNestedManyWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| users | CommuneUserUncheckedCreateNestedManyWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneWhereUniqueInput | No |
| create | CommuneCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommuneCreateManyOwnerInput | CommuneCreateManyOwnerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | Role | No |
| commune | CommuneCreateNestedOneWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| communeId | String | No |
| role | Role | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneUserWhereUniqueInput | No |
| create | CommuneUserCreateWithoutUserInput | CommuneUserUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommuneUserCreateManyUserInput | CommuneUserCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fanOf | UserCreateNestedOneWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fanOfId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FanWhereUniqueInput | No |
| create | FanCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FanCreateManyFanInput | FanCreateManyFanInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| fan | UserCreateNestedOneWithoutFanOfInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fanId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FanWhereUniqueInput | No |
| create | FanCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FanCreateManyFanOfInput | FanCreateManyFanOfInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| following | UserCreateNestedOneWithoutFollowingInput | No |
| character | CharacterCreateNestedOneWithoutFansInput | No |
| book | BookCreateNestedOneWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followingId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| create | FollowCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowCreateManyFollowerInput | FollowCreateManyFollowerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| follower | UserCreateNestedOneWithoutFollowerInput | No |
| character | CharacterCreateNestedOneWithoutFansInput | No |
| book | BookCreateNestedOneWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| create | FollowCreateWithoutFollowingInput | FollowUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowCreateManyFollowingInput | FollowCreateManyFollowingInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | GalleryCreateManyAuthorInput | GalleryCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| gallery | GalleryCreateNestedOneWithoutImagesInput | No |
| post | PostCreateNestedOneWithoutImagesInput | No |
| likes | LikeCreateNestedManyWithoutImageInput | No |
| shares | ShareCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| galleryId | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| postId | String | Null | Yes |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutImageInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| create | ImageCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ImageCreateManyAuthorInput | ImageCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| comment | CommentCreateNestedOneWithoutLikesInput | No |
| gallery | GalleryCreateNestedOneWithoutLikesInput | No |
| image | ImageCreateNestedOneWithoutLikesInput | No |
| post | PostCreateNestedOneWithoutLikesInput | No |
| character | CharacterCreateNestedOneWithoutLikesInput | No |
| book | BookCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyAuthorInput | LikeCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| images | ImageCreateNestedManyWithoutPostInput | No |
| likes | LikeCreateNestedManyWithoutPostInput | No |
| news | NewsCreateNestedOneWithoutPostInput | No |
| comment | PostCreateNestedOneWithoutPost_commentsInput | No |
| post_comments | PostCreateNestedManyWithoutCommentInput | No |
| shares | ShareCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| images | ImageUncheckedCreateNestedManyWithoutPostInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutPostInput | No |
| news | NewsUncheckedCreateNestedOneWithoutPostInput | No |
| post_comments | PostUncheckedCreateNestedManyWithoutCommentInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostCreateManyAuthorInput | PostCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SessionCreateManyUserInput | SessionCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| gallery | GalleryCreateNestedOneWithoutSharesInput | No |
| image | ImageCreateNestedOneWithoutSharesInput | No |
| post | PostCreateNestedOneWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| postId | String | Null | Yes |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| create | ShareCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ShareCreateManyAuthorInput | ShareCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| messages | ChatMessageCreateNestedManyWithoutChatRoomInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| messages | ChatMessageUncheckedCreateNestedManyWithoutChatRoomInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatRoomWhereUniqueInput | No |
| create | ChatRoomCreateWithoutUsersInput | ChatRoomUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| level | Audience | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| level | Audience | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | MembershipWhereUniqueInput | No |
| create | MembershipCreateWithoutUserInput | MembershipUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| genre | GenreCreateNestedOneWithoutBooksInput | No |
| categories | BookCategoryCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterCreateNestedManyWithoutBookInput | No |
| characters | CharacterCreateNestedManyWithoutBooksInput | No |
| gallery | GalleryCreateNestedOneWithoutBook_galleryInput | No |
| fans | FollowCreateNestedManyWithoutBookInput | No |
| likes | LikeCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| categories | BookCategoryUncheckedCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutBookInput | No |
| characters | CharacterUncheckedCreateNestedManyWithoutBooksInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutBookInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| create | BookCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| update | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| data | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountScalarWhereInput | No |
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| OR | AccountScalarWhereInput[] | No |
| NOT | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| id | StringFilter | String | No |
| userId | StringFilter | String | No |
| type | StringFilter | String | No |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| oauth_token_secret | StringNullableFilter | String | Null | Yes |
| oauth_token | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| update | BlockUpdateWithoutBlockedUserInput | BlockUncheckedUpdateWithoutBlockedUserInput | No |
| create | BlockCreateWithoutBlockedUserInput | BlockUncheckedCreateWithoutBlockedUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| data | BlockUpdateWithoutBlockedUserInput | BlockUncheckedUpdateWithoutBlockedUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockScalarWhereInput | No |
| data | BlockUpdateManyMutationInput | BlockUncheckedUpdateManyWithoutBlockingInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BlockScalarWhereInput | BlockScalarWhereInput[] | No |
| OR | BlockScalarWhereInput[] | No |
| NOT | BlockScalarWhereInput | BlockScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| entity | EnumEntityNullableFilter | Entity | Null | Yes |
| entityId | StringNullableFilter | String | Null | Yes |
| blockedId | StringFilter | String | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| threadId | StringNullableFilter | String | Null | Yes |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| update | BlockUpdateWithoutUserInput | BlockUncheckedUpdateWithoutUserInput | No |
| create | BlockCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| data | BlockUpdateWithoutUserInput | BlockUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockScalarWhereInput | No |
| data | BlockUpdateManyMutationInput | BlockUncheckedUpdateManyWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| update | ChatMessageUpdateWithoutAuthorInput | ChatMessageUncheckedUpdateWithoutAuthorInput | No |
| create | ChatMessageCreateWithoutAuthorInput | ChatMessageUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| data | ChatMessageUpdateWithoutAuthorInput | ChatMessageUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageScalarWhereInput | No |
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] | No |
| OR | ChatMessageScalarWhereInput[] | No |
| NOT | ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| seen | BoolFilter | Boolean | No |
| chatRoomId | StringFilter | String | No |
| authorId | StringFilter | String | No |
| content | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput | No |
| create | CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| OR | CommentScalarWhereInput[] | No |
| NOT | CommentScalarWhereInput | CommentScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| threadType | EnumEntityFilter | Entity | No |
| threadId | StringFilter | String | No |
| authorId | StringFilter | String | No |
| content | StringFilter | String | No |
| visible | BoolFilter | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneWhereUniqueInput | No |
| update | CommuneUpdateWithoutOwnerInput | CommuneUncheckedUpdateWithoutOwnerInput | No |
| create | CommuneCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneWhereUniqueInput | No |
| data | CommuneUpdateWithoutOwnerInput | CommuneUncheckedUpdateWithoutOwnerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneScalarWhereInput | No |
| data | CommuneUpdateManyMutationInput | CommuneUncheckedUpdateManyWithoutOwnedCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommuneScalarWhereInput | CommuneScalarWhereInput[] | No |
| OR | CommuneScalarWhereInput[] | No |
| NOT | CommuneScalarWhereInput | CommuneScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| ownerId | StringFilter | String | No |
| entity | EnumEntityFilter | Entity | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| threadId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneUserWhereUniqueInput | No |
| update | CommuneUserUpdateWithoutUserInput | CommuneUserUncheckedUpdateWithoutUserInput | No |
| create | CommuneUserCreateWithoutUserInput | CommuneUserUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneUserWhereUniqueInput | No |
| data | CommuneUserUpdateWithoutUserInput | CommuneUserUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneUserScalarWhereInput | No |
| data | CommuneUserUpdateManyMutationInput | CommuneUserUncheckedUpdateManyWithoutCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CommuneUserScalarWhereInput | CommuneUserScalarWhereInput[] | No |
| OR | CommuneUserScalarWhereInput[] | No |
| NOT | CommuneUserScalarWhereInput | CommuneUserScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| communeId | StringFilter | String | No |
| userId | StringFilter | String | No |
| role | EnumRoleFilter | Role | No |
| Name | Type | Nullable |
|---|---|---|
| where | FanWhereUniqueInput | No |
| update | FanUpdateWithoutFanInput | FanUncheckedUpdateWithoutFanInput | No |
| create | FanCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FanWhereUniqueInput | No |
| data | FanUpdateWithoutFanInput | FanUncheckedUpdateWithoutFanInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FanScalarWhereInput | No |
| data | FanUpdateManyMutationInput | FanUncheckedUpdateManyWithoutFanOfInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FanScalarWhereInput | FanScalarWhereInput[] | No |
| OR | FanScalarWhereInput[] | No |
| NOT | FanScalarWhereInput | FanScalarWhereInput[] | No |
| id | StringFilter | String | No |
| fanId | StringFilter | String | No |
| fanOfId | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FanWhereUniqueInput | No |
| update | FanUpdateWithoutFanOfInput | FanUncheckedUpdateWithoutFanOfInput | No |
| create | FanCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FanWhereUniqueInput | No |
| data | FanUpdateWithoutFanOfInput | FanUncheckedUpdateWithoutFanOfInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FanScalarWhereInput | No |
| data | FanUpdateManyMutationInput | FanUncheckedUpdateManyWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| update | FollowUpdateWithoutFollowerInput | FollowUncheckedUpdateWithoutFollowerInput | No |
| create | FollowCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| data | FollowUpdateWithoutFollowerInput | FollowUncheckedUpdateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowScalarWhereInput | No |
| data | FollowUpdateManyMutationInput | FollowUncheckedUpdateManyWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowScalarWhereInput | FollowScalarWhereInput[] | No |
| OR | FollowScalarWhereInput[] | No |
| NOT | FollowScalarWhereInput | FollowScalarWhereInput[] | No |
| id | StringFilter | String | No |
| followerId | StringFilter | String | No |
| followingId | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| characterId | StringNullableFilter | String | Null | Yes |
| bookId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| update | FollowUpdateWithoutFollowingInput | FollowUncheckedUpdateWithoutFollowingInput | No |
| create | FollowCreateWithoutFollowingInput | FollowUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| data | FollowUpdateWithoutFollowingInput | FollowUncheckedUpdateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowScalarWhereInput | No |
| data | FollowUpdateManyMutationInput | FollowUncheckedUpdateManyWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| update | GalleryUpdateWithoutAuthorInput | GalleryUncheckedUpdateWithoutAuthorInput | No |
| create | GalleryCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| data | GalleryUpdateWithoutAuthorInput | GalleryUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryScalarWhereInput | No |
| data | GalleryUpdateManyMutationInput | GalleryUncheckedUpdateManyWithoutGalleriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | GalleryScalarWhereInput | GalleryScalarWhereInput[] | No |
| OR | GalleryScalarWhereInput[] | No |
| NOT | GalleryScalarWhereInput | GalleryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| title | StringNullableFilter | String | Null | Yes |
| description | StringNullableFilter | String | Null | Yes |
| authorId | StringFilter | String | No |
| shareId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| update | ImageUpdateWithoutAuthorInput | ImageUncheckedUpdateWithoutAuthorInput | No |
| create | ImageCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| data | ImageUpdateWithoutAuthorInput | ImageUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageScalarWhereInput | No |
| data | ImageUpdateManyMutationInput | ImageUncheckedUpdateManyWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ImageScalarWhereInput | ImageScalarWhereInput[] | No |
| OR | ImageScalarWhereInput[] | No |
| NOT | ImageScalarWhereInput | ImageScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| title | StringNullableFilter | String | Null | Yes |
| authorId | StringFilter | String | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| shareId | StringNullableFilter | String | Null | Yes |
| url | StringFilter | String | No |
| postId | StringNullableFilter | String | Null | Yes |
| height | IntNullableFilter | Int | Null | Yes |
| width | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutAuthorInput | LikeUncheckedUpdateWithoutAuthorInput | No |
| create | LikeCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutAuthorInput | LikeUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| OR | LikeScalarWhereInput[] | No |
| NOT | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| id | StringFilter | String | No |
| authorId | StringFilter | String | No |
| postId | StringNullableFilter | String | Null | Yes |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| imageId | StringNullableFilter | String | Null | Yes |
| commentId | StringNullableFilter | String | Null | Yes |
| characterId | StringNullableFilter | String | Null | Yes |
| bookId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| update | PostUpdateWithoutAuthorInput | PostUncheckedUpdateWithoutAuthorInput | No |
| create | PostCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| data | PostUpdateWithoutAuthorInput | PostUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostScalarWhereInput | No |
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PostScalarWhereInput | PostScalarWhereInput[] | No |
| OR | PostScalarWhereInput[] | No |
| NOT | PostScalarWhereInput | PostScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| content | StringNullableFilter | String | Null | Yes |
| shareId | StringNullableFilter | String | Null | Yes |
| commentId | StringNullableFilter | String | Null | Yes |
| authorId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| update | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| data | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionScalarWhereInput | No |
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| OR | SessionScalarWhereInput[] | No |
| NOT | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| sessionToken | StringFilter | String | No |
| userId | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| update | ShareUpdateWithoutAuthorInput | ShareUncheckedUpdateWithoutAuthorInput | No |
| create | ShareCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| data | ShareUpdateWithoutAuthorInput | ShareUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareScalarWhereInput | No |
| data | ShareUpdateManyMutationInput | ShareUncheckedUpdateManyWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| OR | ShareScalarWhereInput[] | No |
| NOT | ShareScalarWhereInput | ShareScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| authorId | StringFilter | String | No |
| postId | StringNullableFilter | String | Null | Yes |
| galleryId | StringNullableFilter | String | Null | Yes |
| imageId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ChatRoomWhereUniqueInput | No |
| update | ChatRoomUpdateWithoutUsersInput | ChatRoomUncheckedUpdateWithoutUsersInput | No |
| create | ChatRoomCreateWithoutUsersInput | ChatRoomUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatRoomWhereUniqueInput | No |
| data | ChatRoomUpdateWithoutUsersInput | ChatRoomUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatRoomScalarWhereInput | No |
| data | ChatRoomUpdateManyMutationInput | ChatRoomUncheckedUpdateManyWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChatRoomScalarWhereInput | ChatRoomScalarWhereInput[] | No |
| OR | ChatRoomScalarWhereInput[] | No |
| NOT | ChatRoomScalarWhereInput | ChatRoomScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| visible | BoolFilter | Boolean | No |
| party | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| update | MembershipUpdateWithoutUserInput | MembershipUncheckedUpdateWithoutUserInput | No |
| create | MembershipCreateWithoutUserInput | MembershipUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| level | Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| level | Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| update | BookUpdateWithoutAuthorsInput | BookUncheckedUpdateWithoutAuthorsInput | No |
| create | BookCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| data | BookUpdateWithoutAuthorsInput | BookUncheckedUpdateWithoutAuthorsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookScalarWhereInput | No |
| data | BookUpdateManyMutationInput | BookUncheckedUpdateManyWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookScalarWhereInput | BookScalarWhereInput[] | No |
| OR | BookScalarWhereInput[] | No |
| NOT | BookScalarWhereInput | BookScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| active | BoolFilter | Boolean | No |
| status | EnumBookStatusNullableFilter | BookStatus | Null | Yes |
| prospect | BoolFilter | Boolean | No |
| title | StringFilter | String | No |
| cover | StringFilter | String | No |
| genreId | StringFilter | String | No |
| hook | StringNullableFilter | String | Null | Yes |
| synopsis | StringNullableFilter | String | Null | Yes |
| back | StringNullableFilter | String | Null | Yes |
| words | IntFilter | Int | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| author | UserCreateNestedOneWithoutImagesInput | No |
| gallery | GalleryCreateNestedOneWithoutImagesInput | No |
| likes | LikeCreateNestedManyWithoutImageInput | No |
| shares | ShareCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| authorId | String | No |
| galleryId | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutImageInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| create | ImageCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ImageCreateManyPostInput | ImageCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutLikesInput | No |
| comment | CommentCreateNestedOneWithoutLikesInput | No |
| gallery | GalleryCreateNestedOneWithoutLikesInput | No |
| image | ImageCreateNestedOneWithoutLikesInput | No |
| character | CharacterCreateNestedOneWithoutLikesInput | No |
| book | BookCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyPostInput | LikeCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| banner | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| endDate | DateTime | Null | Yes |
| audience | Audience | No |
| views | Int | No |
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| banner | String | Null | Yes |
| startDate | DateTime | Null | Yes |
| endDate | DateTime | Null | Yes |
| audience | Audience | No |
| views | Int | No |
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | NewsWhereUniqueInput | No |
| create | NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| images | ImageCreateNestedManyWithoutPostInput | No |
| likes | LikeCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| news | NewsCreateNestedOneWithoutPostInput | No |
| comment | PostCreateNestedOneWithoutPost_commentsInput | No |
| shares | ShareCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| authorId | String | No |
| images | ImageUncheckedCreateNestedManyWithoutPostInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutPostInput | No |
| news | NewsUncheckedCreateNestedOneWithoutPostInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutPost_commentsInput | PostUncheckedCreateWithoutPost_commentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| images | ImageCreateNestedManyWithoutPostInput | No |
| likes | LikeCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| news | NewsCreateNestedOneWithoutPostInput | No |
| post_comments | PostCreateNestedManyWithoutCommentInput | No |
| shares | ShareCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| authorId | String | No |
| images | ImageUncheckedCreateNestedManyWithoutPostInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutPostInput | No |
| news | NewsUncheckedCreateNestedOneWithoutPostInput | No |
| post_comments | PostUncheckedCreateNestedManyWithoutCommentInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PostCreateManyCommentInput | PostCreateManyCommentInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| author | UserCreateNestedOneWithoutSharesInput | No |
| gallery | GalleryCreateNestedOneWithoutSharesInput | No |
| image | ImageCreateNestedOneWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| create | ShareCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ShareCreateManyPostInput | ShareCreateManyPostInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| update | ImageUpdateWithoutPostInput | ImageUncheckedUpdateWithoutPostInput | No |
| create | ImageCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| data | ImageUpdateWithoutPostInput | ImageUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageScalarWhereInput | No |
| data | ImageUpdateManyMutationInput | ImageUncheckedUpdateManyWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutPostInput | LikeUncheckedUpdateWithoutPostInput | No |
| create | LikeCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutPostInput | LikeUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPostsInput | UserUncheckedUpdateWithoutPostsInput | No |
| create | UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | NewsUpdateWithoutPostInput | NewsUncheckedUpdateWithoutPostInput | No |
| create | NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| audience | Audience | EnumAudienceFieldUpdateOperationsInput | No |
| views | Int | IntFieldUpdateOperationsInput | No |
| priority | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| startDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| endDate | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| audience | Audience | EnumAudienceFieldUpdateOperationsInput | No |
| views | Int | IntFieldUpdateOperationsInput | No |
| priority | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutPost_commentsInput | PostUncheckedUpdateWithoutPost_commentsInput | No |
| create | PostCreateWithoutPost_commentsInput | PostUncheckedCreateWithoutPost_commentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| images | ImageUpdateManyWithoutPostNestedInput | No |
| likes | LikeUpdateManyWithoutPostNestedInput | No |
| author | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| news | NewsUpdateOneWithoutPostNestedInput | No |
| comment | PostUpdateOneWithoutPost_commentsNestedInput | No |
| shares | ShareUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| images | ImageUncheckedUpdateManyWithoutPostNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutPostNestedInput | No |
| news | NewsUncheckedUpdateOneWithoutPostNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| update | PostUpdateWithoutCommentInput | PostUncheckedUpdateWithoutCommentInput | No |
| create | PostCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| data | PostUpdateWithoutCommentInput | PostUncheckedUpdateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostScalarWhereInput | No |
| data | PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutPost_commentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| update | ShareUpdateWithoutPostInput | ShareUncheckedUpdateWithoutPostInput | No |
| create | ShareCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| data | ShareUpdateWithoutPostInput | ShareUncheckedUpdateWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareScalarWhereInput | No |
| data | ShareUpdateManyMutationInput | ShareUncheckedUpdateManyWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| images | ImageCreateNestedManyWithoutPostInput | No |
| likes | LikeCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| comment | PostCreateNestedOneWithoutPost_commentsInput | No |
| post_comments | PostCreateNestedManyWithoutCommentInput | No |
| shares | ShareCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| authorId | String | No |
| images | ImageUncheckedCreateNestedManyWithoutPostInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutPostInput | No |
| post_comments | PostUncheckedCreateNestedManyWithoutCommentInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutNewsInput | PostUncheckedCreateWithoutNewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutNewsInput | PostUncheckedUpdateWithoutNewsInput | No |
| create | PostCreateWithoutNewsInput | PostUncheckedCreateWithoutNewsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| images | ImageUpdateManyWithoutPostNestedInput | No |
| likes | LikeUpdateManyWithoutPostNestedInput | No |
| author | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| comment | PostUpdateOneWithoutPost_commentsNestedInput | No |
| post_comments | PostUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| images | ImageUncheckedUpdateManyWithoutPostNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutPostNestedInput | No |
| post_comments | PostUncheckedUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedUser | UserCreateNestedOneWithoutBlockingInput | No |
| blockedThread | CommentThreadCreateNestedOneWithoutBlockedInput | No |
| user | UserCreateNestedOneWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedId | String | No |
| threadId | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| create | BlockCreateWithoutBlockedGalleryInput | BlockUncheckedCreateWithoutBlockedGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BlockCreateManyBlockedGalleryInput | BlockCreateManyBlockedGalleryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| owner | UserCreateNestedOneWithoutOwnedCommunesInput | No |
| thread | CommentThreadCreateNestedOneWithoutCommuneInput | No |
| users | CommuneUserCreateNestedManyWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| ownerId | String | No |
| entity | Entity | No |
| threadId | String | Null | Yes |
| users | CommuneUserUncheckedCreateNestedManyWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneWhereUniqueInput | No |
| create | CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutGalleriesInput | UserUncheckedCreateWithoutGalleriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| author | UserCreateNestedOneWithoutImagesInput | No |
| post | PostCreateNestedOneWithoutImagesInput | No |
| likes | LikeCreateNestedManyWithoutImageInput | No |
| shares | ShareCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| url | String | No |
| postId | String | Null | Yes |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutImageInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| create | ImageCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ImageCreateManyGalleryInput | ImageCreateManyGalleryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutLikesInput | No |
| comment | CommentCreateNestedOneWithoutLikesInput | No |
| image | ImageCreateNestedOneWithoutLikesInput | No |
| post | PostCreateNestedOneWithoutLikesInput | No |
| character | CharacterCreateNestedOneWithoutLikesInput | No |
| book | BookCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyGalleryInput | LikeCreateManyGalleryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| author | UserCreateNestedOneWithoutSharesInput | No |
| image | ImageCreateNestedOneWithoutSharesInput | No |
| post | PostCreateNestedOneWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| postId | String | Null | Yes |
| imageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| create | ShareCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ShareCreateManyGalleryInput | ShareCreateManyGalleryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| genre | GenreCreateNestedOneWithoutBooksInput | No |
| categories | BookCategoryCreateNestedManyWithoutBooksInput | No |
| authors | UserCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterCreateNestedManyWithoutBookInput | No |
| characters | CharacterCreateNestedManyWithoutBooksInput | No |
| fans | FollowCreateNestedManyWithoutBookInput | No |
| likes | LikeCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| categories | BookCategoryUncheckedCreateNestedManyWithoutBooksInput | No |
| authors | UserUncheckedCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutBookInput | No |
| characters | CharacterUncheckedCreateNestedManyWithoutBooksInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutBookInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| create | BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| likes | LikeCreateNestedManyWithoutCharacterInput | No |
| fans | FollowCreateNestedManyWithoutCharacterInput | No |
| books | BookCreateNestedManyWithoutCharactersInput | No |
| chapters | ChapterCreateNestedManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| likes | LikeUncheckedCreateNestedManyWithoutCharacterInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutCharacterInput | No |
| books | BookUncheckedCreateNestedManyWithoutCharactersInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| create | CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| characters | CharacterCreateNestedManyWithoutChaptersInput | No |
| book | BookCreateNestedOneWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| bookId | String | No |
| characters | CharacterUncheckedCreateNestedManyWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterWhereUniqueInput | No |
| create | ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| update | BlockUpdateWithoutBlockedGalleryInput | BlockUncheckedUpdateWithoutBlockedGalleryInput | No |
| create | BlockCreateWithoutBlockedGalleryInput | BlockUncheckedCreateWithoutBlockedGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| data | BlockUpdateWithoutBlockedGalleryInput | BlockUncheckedUpdateWithoutBlockedGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockScalarWhereInput | No |
| data | BlockUpdateManyMutationInput | BlockUncheckedUpdateManyWithoutBlockingInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommuneUpdateWithoutGalleryInput | CommuneUncheckedUpdateWithoutGalleryInput | No |
| create | CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| owner | UserUpdateOneRequiredWithoutOwnedCommunesNestedInput | No |
| thread | CommentThreadUpdateOneWithoutCommuneNestedInput | No |
| users | CommuneUserUpdateManyWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| users | CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutGalleriesInput | UserUncheckedUpdateWithoutGalleriesInput | No |
| create | UserCreateWithoutGalleriesInput | UserUncheckedCreateWithoutGalleriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| update | ImageUpdateWithoutGalleryInput | ImageUncheckedUpdateWithoutGalleryInput | No |
| create | ImageCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| data | ImageUpdateWithoutGalleryInput | ImageUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageScalarWhereInput | No |
| data | ImageUpdateManyMutationInput | ImageUncheckedUpdateManyWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutGalleryInput | LikeUncheckedUpdateWithoutGalleryInput | No |
| create | LikeCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutGalleryInput | LikeUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| update | ShareUpdateWithoutGalleryInput | ShareUncheckedUpdateWithoutGalleryInput | No |
| create | ShareCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| data | ShareUpdateWithoutGalleryInput | ShareUncheckedUpdateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareScalarWhereInput | No |
| data | ShareUpdateManyMutationInput | ShareUncheckedUpdateManyWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BookUpdateWithoutGalleryInput | BookUncheckedUpdateWithoutGalleryInput | No |
| create | BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CharacterUpdateWithoutGalleryInput | CharacterUncheckedUpdateWithoutGalleryInput | No |
| create | CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ChapterUpdateWithoutGalleryInput | ChapterUncheckedUpdateWithoutGalleryInput | No |
| create | ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| characters | CharacterUpdateManyWithoutChaptersNestedInput | No |
| book | BookUpdateOneRequiredWithoutChaptersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| bookId | String | StringFieldUpdateOperationsInput | No |
| characters | CharacterUncheckedUpdateManyWithoutChaptersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutImagesInput | UserUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutImagesInput | GalleryUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| likes | LikeCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| news | NewsCreateNestedOneWithoutPostInput | No |
| comment | PostCreateNestedOneWithoutPost_commentsInput | No |
| post_comments | PostCreateNestedManyWithoutCommentInput | No |
| shares | ShareCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| authorId | String | No |
| likes | LikeUncheckedCreateNestedManyWithoutPostInput | No |
| news | NewsUncheckedCreateNestedOneWithoutPostInput | No |
| post_comments | PostUncheckedCreateNestedManyWithoutCommentInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutLikesInput | No |
| comment | CommentCreateNestedOneWithoutLikesInput | No |
| gallery | GalleryCreateNestedOneWithoutLikesInput | No |
| post | PostCreateNestedOneWithoutLikesInput | No |
| character | CharacterCreateNestedOneWithoutLikesInput | No |
| book | BookCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyImageInput | LikeCreateManyImageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| author | UserCreateNestedOneWithoutSharesInput | No |
| gallery | GalleryCreateNestedOneWithoutSharesInput | No |
| post | PostCreateNestedOneWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| postId | String | Null | Yes |
| galleryId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| create | ShareCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ShareCreateManyImageInput | ShareCreateManyImageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutImagesInput | UserUncheckedUpdateWithoutImagesInput | No |
| create | UserCreateWithoutImagesInput | UserUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | GalleryUpdateWithoutImagesInput | GalleryUncheckedUpdateWithoutImagesInput | No |
| create | GalleryCreateWithoutImagesInput | GalleryUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutGalleryNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUncheckedUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutImagesInput | PostUncheckedUpdateWithoutImagesInput | No |
| create | PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| likes | LikeUpdateManyWithoutPostNestedInput | No |
| author | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| news | NewsUpdateOneWithoutPostNestedInput | No |
| comment | PostUpdateOneWithoutPost_commentsNestedInput | No |
| post_comments | PostUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| likes | LikeUncheckedUpdateManyWithoutPostNestedInput | No |
| news | NewsUncheckedUpdateOneWithoutPostNestedInput | No |
| post_comments | PostUncheckedUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutImageInput | LikeUncheckedUpdateWithoutImageInput | No |
| create | LikeCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutImageInput | LikeUncheckedUpdateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| update | ShareUpdateWithoutImageInput | ShareUncheckedUpdateWithoutImageInput | No |
| create | ShareCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareWhereUniqueInput | No |
| data | ShareUpdateWithoutImageInput | ShareUncheckedUpdateWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShareScalarWhereInput | No |
| data | ShareUpdateManyMutationInput | ShareUncheckedUpdateManyWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| content | String | No |
| visible | Boolean | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| thread | CommentThreadCreateNestedOneWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| threadId | String | No |
| authorId | String | No |
| content | String | No |
| visible | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutLikesInput | CommentUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutLikesInput | GalleryUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| author | UserCreateNestedOneWithoutImagesInput | No |
| gallery | GalleryCreateNestedOneWithoutImagesInput | No |
| post | PostCreateNestedOneWithoutImagesInput | No |
| shares | ShareCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| authorId | String | No |
| galleryId | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| postId | String | Null | Yes |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| shares | ShareUncheckedCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| create | ImageCreateWithoutLikesInput | ImageUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| images | ImageCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| news | NewsCreateNestedOneWithoutPostInput | No |
| comment | PostCreateNestedOneWithoutPost_commentsInput | No |
| post_comments | PostCreateNestedManyWithoutCommentInput | No |
| shares | ShareCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| authorId | String | No |
| images | ImageUncheckedCreateNestedManyWithoutPostInput | No |
| news | NewsUncheckedCreateNestedOneWithoutPostInput | No |
| post_comments | PostUncheckedCreateNestedManyWithoutCommentInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutPostInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutLikesInput | PostUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| fans | FollowCreateNestedManyWithoutCharacterInput | No |
| books | BookCreateNestedManyWithoutCharactersInput | No |
| chapters | ChapterCreateNestedManyWithoutCharactersInput | No |
| gallery | GalleryCreateNestedOneWithoutCharacter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| galleryId | String | Null | Yes |
| fans | FollowUncheckedCreateNestedManyWithoutCharacterInput | No |
| books | BookUncheckedCreateNestedManyWithoutCharactersInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| create | CharacterCreateWithoutLikesInput | CharacterUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| genre | GenreCreateNestedOneWithoutBooksInput | No |
| categories | BookCategoryCreateNestedManyWithoutBooksInput | No |
| authors | UserCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterCreateNestedManyWithoutBookInput | No |
| characters | CharacterCreateNestedManyWithoutBooksInput | No |
| gallery | GalleryCreateNestedOneWithoutBook_galleryInput | No |
| fans | FollowCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| categories | BookCategoryUncheckedCreateNestedManyWithoutBooksInput | No |
| authors | UserUncheckedCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutBookInput | No |
| characters | CharacterUncheckedCreateNestedManyWithoutBooksInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| create | BookCreateWithoutLikesInput | BookUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutLikesInput | UserUncheckedUpdateWithoutLikesInput | No |
| create | UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommentUpdateWithoutLikesInput | CommentUncheckedUpdateWithoutLikesInput | No |
| create | CommentCreateWithoutLikesInput | CommentUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutCommentsNestedInput | No |
| thread | CommentThreadUpdateOneRequiredWithoutCommentsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| threadId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | GalleryUpdateWithoutLikesInput | GalleryUncheckedUpdateWithoutLikesInput | No |
| create | GalleryCreateWithoutLikesInput | GalleryUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutGalleryNestedInput | No |
| images | ImageUncheckedUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUncheckedUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ImageUpdateWithoutLikesInput | ImageUncheckedUpdateWithoutLikesInput | No |
| create | ImageCreateWithoutLikesInput | ImageUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| author | UserUpdateOneRequiredWithoutImagesNestedInput | No |
| gallery | GalleryUpdateOneWithoutImagesNestedInput | No |
| post | PostUpdateOneWithoutImagesNestedInput | No |
| shares | ShareUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| shares | ShareUncheckedUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutLikesInput | PostUncheckedUpdateWithoutLikesInput | No |
| create | PostCreateWithoutLikesInput | PostUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| images | ImageUpdateManyWithoutPostNestedInput | No |
| author | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| news | NewsUpdateOneWithoutPostNestedInput | No |
| comment | PostUpdateOneWithoutPost_commentsNestedInput | No |
| post_comments | PostUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| images | ImageUncheckedUpdateManyWithoutPostNestedInput | No |
| news | NewsUncheckedUpdateOneWithoutPostNestedInput | No |
| post_comments | PostUncheckedUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CharacterUpdateWithoutLikesInput | CharacterUncheckedUpdateWithoutLikesInput | No |
| create | CharacterCreateWithoutLikesInput | CharacterUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BookUpdateWithoutLikesInput | BookUncheckedUpdateWithoutLikesInput | No |
| create | BookCreateWithoutLikesInput | BookUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSharesInput | UserUncheckedCreateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutSharesInput | GalleryUncheckedCreateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| author | UserCreateNestedOneWithoutImagesInput | No |
| gallery | GalleryCreateNestedOneWithoutImagesInput | No |
| post | PostCreateNestedOneWithoutImagesInput | No |
| likes | LikeCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| authorId | String | No |
| galleryId | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| postId | String | Null | Yes |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutImageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ImageWhereUniqueInput | No |
| create | ImageCreateWithoutSharesInput | ImageUncheckedCreateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| images | ImageCreateNestedManyWithoutPostInput | No |
| likes | LikeCreateNestedManyWithoutPostInput | No |
| author | UserCreateNestedOneWithoutPostsInput | No |
| news | NewsCreateNestedOneWithoutPostInput | No |
| comment | PostCreateNestedOneWithoutPost_commentsInput | No |
| post_comments | PostCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| authorId | String | No |
| images | ImageUncheckedCreateNestedManyWithoutPostInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutPostInput | No |
| news | NewsUncheckedCreateNestedOneWithoutPostInput | No |
| post_comments | PostUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PostWhereUniqueInput | No |
| create | PostCreateWithoutSharesInput | PostUncheckedCreateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSharesInput | UserUncheckedUpdateWithoutSharesInput | No |
| create | UserCreateWithoutSharesInput | UserUncheckedCreateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | GalleryUpdateWithoutSharesInput | GalleryUncheckedUpdateWithoutSharesInput | No |
| create | GalleryCreateWithoutSharesInput | GalleryUncheckedCreateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutGalleryNestedInput | No |
| images | ImageUncheckedUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUncheckedUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ImageUpdateWithoutSharesInput | ImageUncheckedUpdateWithoutSharesInput | No |
| create | ImageCreateWithoutSharesInput | ImageUncheckedCreateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| author | UserUpdateOneRequiredWithoutImagesNestedInput | No |
| gallery | GalleryUpdateOneWithoutImagesNestedInput | No |
| post | PostUpdateOneWithoutImagesNestedInput | No |
| likes | LikeUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| likes | LikeUncheckedUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PostUpdateWithoutSharesInput | PostUncheckedUpdateWithoutSharesInput | No |
| create | PostCreateWithoutSharesInput | PostUncheckedCreateWithoutSharesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| images | ImageUpdateManyWithoutPostNestedInput | No |
| likes | LikeUpdateManyWithoutPostNestedInput | No |
| author | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| news | NewsUpdateOneWithoutPostNestedInput | No |
| comment | PostUpdateOneWithoutPost_commentsNestedInput | No |
| post_comments | PostUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| images | ImageUncheckedUpdateManyWithoutPostNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutPostNestedInput | No |
| news | NewsUncheckedUpdateOneWithoutPostNestedInput | No |
| post_comments | PostUncheckedUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowerInput | UserUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| likes | LikeCreateNestedManyWithoutCharacterInput | No |
| books | BookCreateNestedManyWithoutCharactersInput | No |
| chapters | ChapterCreateNestedManyWithoutCharactersInput | No |
| gallery | GalleryCreateNestedOneWithoutCharacter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| galleryId | String | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutCharacterInput | No |
| books | BookUncheckedCreateNestedManyWithoutCharactersInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| create | CharacterCreateWithoutFansInput | CharacterUncheckedCreateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| genre | GenreCreateNestedOneWithoutBooksInput | No |
| categories | BookCategoryCreateNestedManyWithoutBooksInput | No |
| authors | UserCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterCreateNestedManyWithoutBookInput | No |
| characters | CharacterCreateNestedManyWithoutBooksInput | No |
| gallery | GalleryCreateNestedOneWithoutBook_galleryInput | No |
| likes | LikeCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| categories | BookCategoryUncheckedCreateNestedManyWithoutBooksInput | No |
| authors | UserUncheckedCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutBookInput | No |
| characters | CharacterUncheckedCreateNestedManyWithoutBooksInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| create | BookCreateWithoutFansInput | BookUncheckedCreateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowerInput | UserUncheckedUpdateWithoutFollowerInput | No |
| create | UserCreateWithoutFollowerInput | UserUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowingInput | UserUncheckedUpdateWithoutFollowingInput | No |
| create | UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CharacterUpdateWithoutFansInput | CharacterUncheckedUpdateWithoutFansInput | No |
| create | CharacterCreateWithoutFansInput | CharacterUncheckedCreateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BookUpdateWithoutFansInput | BookUncheckedUpdateWithoutFansInput | No |
| create | BookCreateWithoutFansInput | BookUncheckedCreateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFanOfInput | UserUncheckedCreateWithoutFanOfInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFansInput | UserUncheckedCreateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFanOfInput | UserUncheckedUpdateWithoutFanOfInput | No |
| create | UserCreateWithoutFanOfInput | UserUncheckedCreateWithoutFanOfInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFansInput | UserUncheckedUpdateWithoutFansInput | No |
| create | UserCreateWithoutFansInput | UserUncheckedCreateWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| content | String | No |
| author | UserCreateNestedOneWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| authorId | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| create | ChatMessageCreateWithoutChatRoomInput | ChatMessageUncheckedCreateWithoutChatRoomInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChatMessageCreateManyChatRoomInput | ChatMessageCreateManyChatRoomInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| update | ChatMessageUpdateWithoutChatRoomInput | ChatMessageUncheckedUpdateWithoutChatRoomInput | No |
| create | ChatMessageCreateWithoutChatRoomInput | ChatMessageUncheckedCreateWithoutChatRoomInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageWhereUniqueInput | No |
| data | ChatMessageUpdateWithoutChatRoomInput | ChatMessageUncheckedUpdateWithoutChatRoomInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatMessageScalarWhereInput | No |
| data | ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput | No |
| create | UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereInput | UserScalarWhereInput[] | No |
| OR | UserScalarWhereInput[] | No |
| NOT | UserScalarWhereInput | UserScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringNullableFilter | String | Null | Yes |
| StringNullableFilter | String | Null | Yes | |
| emailVerified | DateTimeNullableFilter | DateTime | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| membershipId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| users | UserCreateNestedManyWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| users | UserUncheckedCreateNestedManyWithoutChatsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChatRoomWhereUniqueInput | No |
| create | ChatRoomCreateWithoutMessagesInput | ChatRoomUncheckedCreateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutChatMessagesInput | UserUncheckedUpdateWithoutChatMessagesInput | No |
| create | UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ChatRoomUpdateWithoutMessagesInput | ChatRoomUncheckedUpdateWithoutMessagesInput | No |
| create | ChatRoomCreateWithoutMessagesInput | ChatRoomUncheckedCreateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| users | UserUpdateManyWithoutChatsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| users | UserUncheckedUpdateManyWithoutChatsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedUser | UserCreateNestedOneWithoutBlockingInput | No |
| blockedGallery | GalleryCreateNestedOneWithoutBlockingInput | No |
| user | UserCreateNestedOneWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedId | String | No |
| galleryId | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| create | BlockCreateWithoutBlockedThreadInput | BlockUncheckedCreateWithoutBlockedThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BlockCreateManyBlockedThreadInput | BlockCreateManyBlockedThreadInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| content | String | No |
| visible | Boolean | No |
| author | UserCreateNestedOneWithoutCommentsInput | No |
| likes | LikeCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| authorId | String | No |
| content | String | No |
| visible | Boolean | No |
| likes | LikeUncheckedCreateNestedManyWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| create | CommentCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommentCreateManyThreadInput | CommentCreateManyThreadInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| gallery | GalleryCreateNestedOneWithoutCommuneInput | No |
| owner | UserCreateNestedOneWithoutOwnedCommunesInput | No |
| users | CommuneUserCreateNestedManyWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| ownerId | String | No |
| entity | Entity | No |
| galleryId | String | Null | Yes |
| users | CommuneUserUncheckedCreateNestedManyWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneWhereUniqueInput | No |
| create | CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| update | BlockUpdateWithoutBlockedThreadInput | BlockUncheckedUpdateWithoutBlockedThreadInput | No |
| create | BlockCreateWithoutBlockedThreadInput | BlockUncheckedCreateWithoutBlockedThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockWhereUniqueInput | No |
| data | BlockUpdateWithoutBlockedThreadInput | BlockUncheckedUpdateWithoutBlockedThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BlockScalarWhereInput | No |
| data | BlockUpdateManyMutationInput | BlockUncheckedUpdateManyWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| update | CommentUpdateWithoutThreadInput | CommentUncheckedUpdateWithoutThreadInput | No |
| create | CommentCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentWhereUniqueInput | No |
| data | CommentUpdateWithoutThreadInput | CommentUncheckedUpdateWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentScalarWhereInput | No |
| data | CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommuneUpdateWithoutThreadInput | CommuneUncheckedUpdateWithoutThreadInput | No |
| create | CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| gallery | GalleryUpdateOneWithoutCommuneNestedInput | No |
| owner | UserUpdateOneRequiredWithoutOwnedCommunesNestedInput | No |
| users | CommuneUserUpdateManyWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| users | CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| blocked | BlockCreateNestedManyWithoutBlockedThreadInput | No |
| commune | CommuneCreateNestedOneWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| blocked | BlockUncheckedCreateNestedManyWithoutBlockedThreadInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentThreadWhereUniqueInput | No |
| create | CommentThreadCreateWithoutCommentsInput | CommentThreadUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutLikesInput | No |
| gallery | GalleryCreateNestedOneWithoutLikesInput | No |
| image | ImageCreateNestedOneWithoutLikesInput | No |
| post | PostCreateNestedOneWithoutLikesInput | No |
| character | CharacterCreateNestedOneWithoutLikesInput | No |
| book | BookCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyCommentInput | LikeCreateManyCommentInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCommentsInput | UserUncheckedUpdateWithoutCommentsInput | No |
| create | UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommentThreadUpdateWithoutCommentsInput | CommentThreadUncheckedUpdateWithoutCommentsInput | No |
| create | CommentThreadCreateWithoutCommentsInput | CommentThreadUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| blocked | BlockUpdateManyWithoutBlockedThreadNestedInput | No |
| commune | CommuneUpdateOneWithoutThreadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| blocked | BlockUncheckedUpdateManyWithoutBlockedThreadNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutThreadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutCommentInput | LikeUncheckedUpdateWithoutCommentInput | No |
| create | LikeCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutCommentInput | LikeUncheckedUpdateWithoutCommentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutCommuneInput | GalleryUncheckedCreateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutOwnedCommunesInput | UserUncheckedCreateWithoutOwnedCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| blocked | BlockCreateNestedManyWithoutBlockedThreadInput | No |
| comments | CommentCreateNestedManyWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| blocked | BlockUncheckedCreateNestedManyWithoutBlockedThreadInput | No |
| comments | CommentUncheckedCreateNestedManyWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentThreadWhereUniqueInput | No |
| create | CommentThreadCreateWithoutCommuneInput | CommentThreadUncheckedCreateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| role | Role | No |
| user | UserCreateNestedOneWithoutCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userId | String | No |
| role | Role | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneUserWhereUniqueInput | No |
| create | CommuneUserCreateWithoutCommuneInput | CommuneUserUncheckedCreateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CommuneUserCreateManyCommuneInput | CommuneUserCreateManyCommuneInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | GalleryUpdateWithoutCommuneInput | GalleryUncheckedUpdateWithoutCommuneInput | No |
| create | GalleryCreateWithoutCommuneInput | GalleryUncheckedCreateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput | No |
| images | ImageUncheckedUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUncheckedUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutOwnedCommunesInput | UserUncheckedUpdateWithoutOwnedCommunesInput | No |
| create | UserCreateWithoutOwnedCommunesInput | UserUncheckedCreateWithoutOwnedCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommentThreadUpdateWithoutCommuneInput | CommentThreadUncheckedUpdateWithoutCommuneInput | No |
| create | CommentThreadCreateWithoutCommuneInput | CommentThreadUncheckedCreateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| blocked | BlockUpdateManyWithoutBlockedThreadNestedInput | No |
| comments | CommentUpdateManyWithoutThreadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| blocked | BlockUncheckedUpdateManyWithoutBlockedThreadNestedInput | No |
| comments | CommentUncheckedUpdateManyWithoutThreadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneUserWhereUniqueInput | No |
| update | CommuneUserUpdateWithoutCommuneInput | CommuneUserUncheckedUpdateWithoutCommuneInput | No |
| create | CommuneUserCreateWithoutCommuneInput | CommuneUserUncheckedCreateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneUserWhereUniqueInput | No |
| data | CommuneUserUpdateWithoutCommuneInput | CommuneUserUncheckedUpdateWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneUserScalarWhereInput | No |
| data | CommuneUserUpdateManyMutationInput | CommuneUserUncheckedUpdateManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| gallery | GalleryCreateNestedOneWithoutCommuneInput | No |
| owner | UserCreateNestedOneWithoutOwnedCommunesInput | No |
| thread | CommentThreadCreateNestedOneWithoutCommuneInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| ownerId | String | No |
| entity | Entity | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | CommuneWhereUniqueInput | No |
| create | CommuneCreateWithoutUsersInput | CommuneUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCommunesInput | UserUncheckedCreateWithoutCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommuneUpdateWithoutUsersInput | CommuneUncheckedUpdateWithoutUsersInput | No |
| create | CommuneCreateWithoutUsersInput | CommuneUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| gallery | GalleryUpdateOneWithoutCommuneNestedInput | No |
| owner | UserUpdateOneRequiredWithoutOwnedCommunesNestedInput | No |
| thread | CommentThreadUpdateOneWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ownerId | String | StringFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCommunesInput | UserUncheckedUpdateWithoutCommunesInput | No |
| create | UserCreateWithoutCommunesInput | UserUncheckedCreateWithoutCommunesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutMembershipInput | UserUncheckedUpdateWithoutMembershipInput | No |
| create | UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| categories | BookCategoryCreateNestedManyWithoutBooksInput | No |
| authors | UserCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterCreateNestedManyWithoutBookInput | No |
| characters | CharacterCreateNestedManyWithoutBooksInput | No |
| gallery | GalleryCreateNestedOneWithoutBook_galleryInput | No |
| fans | FollowCreateNestedManyWithoutBookInput | No |
| likes | LikeCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| categories | BookCategoryUncheckedCreateNestedManyWithoutBooksInput | No |
| authors | UserUncheckedCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutBookInput | No |
| characters | CharacterUncheckedCreateNestedManyWithoutBooksInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutBookInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| create | BookCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BookCreateManyGenreInput | BookCreateManyGenreInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| url | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| url | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | CoversWhereUniqueInput | No |
| create | CoversCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CoversCreateManyGenreInput | CoversCreateManyGenreInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| update | BookUpdateWithoutGenreInput | BookUncheckedUpdateWithoutGenreInput | No |
| create | BookCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| data | BookUpdateWithoutGenreInput | BookUncheckedUpdateWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookScalarWhereInput | No |
| data | BookUpdateManyMutationInput | BookUncheckedUpdateManyWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CoversWhereUniqueInput | No |
| update | CoversUpdateWithoutGenreInput | CoversUncheckedUpdateWithoutGenreInput | No |
| create | CoversCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CoversWhereUniqueInput | No |
| data | CoversUpdateWithoutGenreInput | CoversUncheckedUpdateWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CoversScalarWhereInput | No |
| data | CoversUpdateManyMutationInput | CoversUncheckedUpdateManyWithoutCoversInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CoversScalarWhereInput | CoversScalarWhereInput[] | No |
| OR | CoversScalarWhereInput[] | No |
| NOT | CoversScalarWhereInput | CoversScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| url | StringFilter | String | No |
| genreId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| books | BookCreateNestedManyWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| books | BookUncheckedCreateNestedManyWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GenreWhereUniqueInput | No |
| create | GenreCreateWithoutCoversInput | GenreUncheckedCreateWithoutCoversInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | GenreUpdateWithoutCoversInput | GenreUncheckedUpdateWithoutCoversInput | No |
| create | GenreCreateWithoutCoversInput | GenreUncheckedCreateWithoutCoversInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fiction | Boolean | BoolFieldUpdateOperationsInput | No |
| books | BookUpdateManyWithoutGenreNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fiction | Boolean | BoolFieldUpdateOperationsInput | No |
| books | BookUncheckedUpdateManyWithoutGenreNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| genre | GenreCreateNestedOneWithoutBooksInput | No |
| authors | UserCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterCreateNestedManyWithoutBookInput | No |
| characters | CharacterCreateNestedManyWithoutBooksInput | No |
| gallery | GalleryCreateNestedOneWithoutBook_galleryInput | No |
| fans | FollowCreateNestedManyWithoutBookInput | No |
| likes | LikeCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| authors | UserUncheckedCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutBookInput | No |
| characters | CharacterUncheckedCreateNestedManyWithoutBooksInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutBookInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| create | BookCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| update | BookUpdateWithoutCategoriesInput | BookUncheckedUpdateWithoutCategoriesInput | No |
| create | BookCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| data | BookUpdateWithoutCategoriesInput | BookUncheckedUpdateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookScalarWhereInput | No |
| data | BookUpdateManyMutationInput | BookUncheckedUpdateManyWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| covers | CoversCreateNestedManyWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| covers | CoversUncheckedCreateNestedManyWithoutGenreInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GenreWhereUniqueInput | No |
| create | GenreCreateWithoutBooksInput | GenreUncheckedCreateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookCategoryWhereUniqueInput | No |
| create | BookCategoryCreateWithoutBooksInput | BookCategoryUncheckedCreateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| characters | CharacterCreateNestedManyWithoutChaptersInput | No |
| gallery | GalleryCreateNestedOneWithoutChapter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| galleryId | String | Null | Yes |
| characters | CharacterUncheckedCreateNestedManyWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterWhereUniqueInput | No |
| create | ChapterCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ChapterCreateManyBookInput | ChapterCreateManyBookInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| likes | LikeCreateNestedManyWithoutCharacterInput | No |
| fans | FollowCreateNestedManyWithoutCharacterInput | No |
| chapters | ChapterCreateNestedManyWithoutCharactersInput | No |
| gallery | GalleryCreateNestedOneWithoutCharacter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| galleryId | String | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutCharacterInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutCharacterInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| create | CharacterCreateWithoutBooksInput | CharacterUncheckedCreateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutBook_galleryInput | GalleryUncheckedCreateWithoutBook_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| follower | UserCreateNestedOneWithoutFollowerInput | No |
| following | UserCreateNestedOneWithoutFollowingInput | No |
| character | CharacterCreateNestedOneWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| create | FollowCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowCreateManyBookInput | FollowCreateManyBookInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutLikesInput | No |
| comment | CommentCreateNestedOneWithoutLikesInput | No |
| gallery | GalleryCreateNestedOneWithoutLikesInput | No |
| image | ImageCreateNestedOneWithoutLikesInput | No |
| post | PostCreateNestedOneWithoutLikesInput | No |
| character | CharacterCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyBookInput | LikeCreateManyBookInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | GenreUpdateWithoutBooksInput | GenreUncheckedUpdateWithoutBooksInput | No |
| create | GenreCreateWithoutBooksInput | GenreUncheckedCreateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fiction | Boolean | BoolFieldUpdateOperationsInput | No |
| covers | CoversUpdateManyWithoutGenreNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| fiction | Boolean | BoolFieldUpdateOperationsInput | No |
| covers | CoversUncheckedUpdateManyWithoutGenreNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookCategoryWhereUniqueInput | No |
| update | BookCategoryUpdateWithoutBooksInput | BookCategoryUncheckedUpdateWithoutBooksInput | No |
| create | BookCategoryCreateWithoutBooksInput | BookCategoryUncheckedCreateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookCategoryWhereUniqueInput | No |
| data | BookCategoryUpdateWithoutBooksInput | BookCategoryUncheckedUpdateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookCategoryScalarWhereInput | No |
| data | BookCategoryUpdateManyMutationInput | BookCategoryUncheckedUpdateManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookCategoryScalarWhereInput | BookCategoryScalarWhereInput[] | No |
| OR | BookCategoryScalarWhereInput[] | No |
| NOT | BookCategoryScalarWhereInput | BookCategoryScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| title | StringFilter | String | No |
| description | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutBooksInput | UserUncheckedUpdateWithoutBooksInput | No |
| create | UserCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutBooksInput | UserUncheckedUpdateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutAuthorsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterWhereUniqueInput | No |
| update | ChapterUpdateWithoutBookInput | ChapterUncheckedUpdateWithoutBookInput | No |
| create | ChapterCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterWhereUniqueInput | No |
| data | ChapterUpdateWithoutBookInput | ChapterUncheckedUpdateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterScalarWhereInput | No |
| data | ChapterUpdateManyMutationInput | ChapterUncheckedUpdateManyWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ChapterScalarWhereInput | ChapterScalarWhereInput[] | No |
| OR | ChapterScalarWhereInput[] | No |
| NOT | ChapterScalarWhereInput | ChapterScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| active | BoolFilter | Boolean | No |
| content | StringFilter | String | No |
| words | IntFilter | Int | No |
| bookId | StringFilter | String | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| update | CharacterUpdateWithoutBooksInput | CharacterUncheckedUpdateWithoutBooksInput | No |
| create | CharacterCreateWithoutBooksInput | CharacterUncheckedCreateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| data | CharacterUpdateWithoutBooksInput | CharacterUncheckedUpdateWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterScalarWhereInput | No |
| data | CharacterUpdateManyMutationInput | CharacterUncheckedUpdateManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CharacterScalarWhereInput | CharacterScalarWhereInput[] | No |
| OR | CharacterScalarWhereInput[] | No |
| NOT | CharacterScalarWhereInput | CharacterScalarWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| active | BoolFilter | Boolean | No |
| name | StringFilter | String | No |
| familyName | StringFilter | String | No |
| givenName | StringFilter | String | No |
| middleName | StringFilter | String | No |
| thumbnail | StringFilter | String | No |
| age | StringFilter | String | No |
| role | StringFilter | String | No |
| description | StringFilter | String | No |
| backstory | StringFilter | String | No |
| title | StringFilter | String | No |
| archetype | StringFilter | String | No |
| galleryId | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | GalleryUpdateWithoutBook_galleryInput | GalleryUncheckedUpdateWithoutBook_galleryInput | No |
| create | GalleryCreateWithoutBook_galleryInput | GalleryUncheckedCreateWithoutBook_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutGalleryNestedInput | No |
| images | ImageUncheckedUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutGalleryNestedInput | No |
| character_gallery | CharacterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| update | FollowUpdateWithoutBookInput | FollowUncheckedUpdateWithoutBookInput | No |
| create | FollowCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| data | FollowUpdateWithoutBookInput | FollowUncheckedUpdateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowScalarWhereInput | No |
| data | FollowUpdateManyMutationInput | FollowUncheckedUpdateManyWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutBookInput | LikeUncheckedUpdateWithoutBookInput | No |
| create | LikeCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutBookInput | LikeUncheckedUpdateWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| author | UserCreateNestedOneWithoutLikesInput | No |
| comment | CommentCreateNestedOneWithoutLikesInput | No |
| gallery | GalleryCreateNestedOneWithoutLikesInput | No |
| image | ImageCreateNestedOneWithoutLikesInput | No |
| post | PostCreateNestedOneWithoutLikesInput | No |
| book | BookCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyCharacterInput | LikeCreateManyCharacterInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| follower | UserCreateNestedOneWithoutFollowerInput | No |
| following | UserCreateNestedOneWithoutFollowingInput | No |
| book | BookCreateNestedOneWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| create | FollowCreateWithoutCharacterInput | FollowUncheckedCreateWithoutCharacterInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowCreateManyCharacterInput | FollowCreateManyCharacterInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| genre | GenreCreateNestedOneWithoutBooksInput | No |
| categories | BookCategoryCreateNestedManyWithoutBooksInput | No |
| authors | UserCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterCreateNestedManyWithoutBookInput | No |
| gallery | GalleryCreateNestedOneWithoutBook_galleryInput | No |
| fans | FollowCreateNestedManyWithoutBookInput | No |
| likes | LikeCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| categories | BookCategoryUncheckedCreateNestedManyWithoutBooksInput | No |
| authors | UserUncheckedCreateNestedManyWithoutBooksInput | No |
| chapters | ChapterUncheckedCreateNestedManyWithoutBookInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutBookInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| create | BookCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| book | BookCreateNestedOneWithoutChaptersInput | No |
| gallery | GalleryCreateNestedOneWithoutChapter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| bookId | String | No |
| galleryId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterWhereUniqueInput | No |
| create | ChapterCreateWithoutCharactersInput | ChapterUncheckedCreateWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutCharacter_galleryInput | GalleryUncheckedCreateWithoutCharacter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutCharacterInput | LikeUncheckedUpdateWithoutCharacterInput | No |
| create | LikeCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutCharacterInput | LikeUncheckedUpdateWithoutCharacterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| update | FollowUpdateWithoutCharacterInput | FollowUncheckedUpdateWithoutCharacterInput | No |
| create | FollowCreateWithoutCharacterInput | FollowUncheckedCreateWithoutCharacterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowWhereUniqueInput | No |
| data | FollowUpdateWithoutCharacterInput | FollowUncheckedUpdateWithoutCharacterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowScalarWhereInput | No |
| data | FollowUpdateManyMutationInput | FollowUncheckedUpdateManyWithoutFansInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| update | BookUpdateWithoutCharactersInput | BookUncheckedUpdateWithoutCharactersInput | No |
| create | BookCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| data | BookUpdateWithoutCharactersInput | BookUncheckedUpdateWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookScalarWhereInput | No |
| data | BookUpdateManyMutationInput | BookUncheckedUpdateManyWithoutBooksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterWhereUniqueInput | No |
| update | ChapterUpdateWithoutCharactersInput | ChapterUncheckedUpdateWithoutCharactersInput | No |
| create | ChapterCreateWithoutCharactersInput | ChapterUncheckedCreateWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterWhereUniqueInput | No |
| data | ChapterUpdateWithoutCharactersInput | ChapterUncheckedUpdateWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ChapterScalarWhereInput | No |
| data | ChapterUpdateManyMutationInput | ChapterUncheckedUpdateManyWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutGalleryNestedInput | No |
| images | ImageUncheckedUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUncheckedUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| likes | LikeCreateNestedManyWithoutCharacterInput | No |
| fans | FollowCreateNestedManyWithoutCharacterInput | No |
| books | BookCreateNestedManyWithoutCharactersInput | No |
| gallery | GalleryCreateNestedOneWithoutCharacter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| galleryId | String | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutCharacterInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutCharacterInput | No |
| books | BookUncheckedCreateNestedManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| create | CharacterCreateWithoutChaptersInput | CharacterUncheckedCreateWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| genre | GenreCreateNestedOneWithoutBooksInput | No |
| categories | BookCategoryCreateNestedManyWithoutBooksInput | No |
| authors | UserCreateNestedManyWithoutBooksInput | No |
| characters | CharacterCreateNestedManyWithoutBooksInput | No |
| gallery | GalleryCreateNestedOneWithoutBook_galleryInput | No |
| fans | FollowCreateNestedManyWithoutBookInput | No |
| likes | LikeCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| categories | BookCategoryUncheckedCreateNestedManyWithoutBooksInput | No |
| authors | UserUncheckedCreateNestedManyWithoutBooksInput | No |
| characters | CharacterUncheckedCreateNestedManyWithoutBooksInput | No |
| fans | FollowUncheckedCreateNestedManyWithoutBookInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutBookInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookWhereUniqueInput | No |
| create | BookCreateWithoutChaptersInput | BookUncheckedCreateWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| blocking | BlockCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| blocking | BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutChapter_galleryInput | GalleryUncheckedCreateWithoutChapter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| update | CharacterUpdateWithoutChaptersInput | CharacterUncheckedUpdateWithoutChaptersInput | No |
| create | CharacterCreateWithoutChaptersInput | CharacterUncheckedCreateWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterWhereUniqueInput | No |
| data | CharacterUpdateWithoutChaptersInput | CharacterUncheckedUpdateWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CharacterScalarWhereInput | No |
| data | CharacterUpdateManyMutationInput | CharacterUncheckedUpdateManyWithoutCharactersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BookUpdateWithoutChaptersInput | BookUncheckedUpdateWithoutChaptersInput | No |
| create | BookCreateWithoutChaptersInput | BookUncheckedCreateWithoutChaptersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | GalleryUpdateWithoutChapter_galleryInput | GalleryUncheckedUpdateWithoutChapter_galleryInput | No |
| create | GalleryCreateWithoutChapter_galleryInput | GalleryUncheckedCreateWithoutChapter_galleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutGalleryNestedInput | No |
| images | ImageUncheckedUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUncheckedUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutBlockingInput | UserUncheckedCreateWithoutBlockingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| commune | CommuneCreateNestedOneWithoutGalleryInput | No |
| author | UserCreateNestedOneWithoutGalleriesInput | No |
| images | ImageCreateNestedManyWithoutGalleryInput | No |
| likes | LikeCreateNestedManyWithoutGalleryInput | No |
| shares | ShareCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| commune | CommuneUncheckedCreateNestedOneWithoutGalleryInput | No |
| images | ImageUncheckedCreateNestedManyWithoutGalleryInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutGalleryInput | No |
| shares | ShareUncheckedCreateNestedManyWithoutGalleryInput | No |
| book_gallery | BookUncheckedCreateNestedOneWithoutGalleryInput | No |
| character_gallery | CharacterUncheckedCreateNestedOneWithoutGalleryInput | No |
| chapter_gallery | ChapterUncheckedCreateNestedOneWithoutGalleryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | GalleryWhereUniqueInput | No |
| create | GalleryCreateWithoutBlockingInput | GalleryUncheckedCreateWithoutBlockingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| comments | CommentCreateNestedManyWithoutThreadInput | No |
| commune | CommuneCreateNestedOneWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| comments | CommentUncheckedCreateNestedManyWithoutThreadInput | No |
| commune | CommuneUncheckedCreateNestedOneWithoutThreadInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CommentThreadWhereUniqueInput | No |
| create | CommentThreadCreateWithoutBlockedInput | CommentThreadUncheckedCreateWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutBlockedInput | UserUncheckedCreateWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutBlockingInput | UserUncheckedUpdateWithoutBlockingInput | No |
| create | UserCreateWithoutBlockingInput | UserUncheckedCreateWithoutBlockingInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | GalleryUpdateWithoutBlockingInput | GalleryUncheckedUpdateWithoutBlockingInput | No |
| create | GalleryCreateWithoutBlockingInput | GalleryUncheckedCreateWithoutBlockingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| author | UserUpdateOneRequiredWithoutGalleriesNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commune | CommuneUncheckedUpdateOneWithoutGalleryNestedInput | No |
| images | ImageUncheckedUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUncheckedUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CommentThreadUpdateWithoutBlockedInput | CommentThreadUncheckedUpdateWithoutBlockedInput | No |
| create | CommentThreadCreateWithoutBlockedInput | CommentThreadUncheckedCreateWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| comments | CommentUpdateManyWithoutThreadNestedInput | No |
| commune | CommuneUpdateOneWithoutThreadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| requiredRole | Role | EnumRoleFieldUpdateOperationsInput | No |
| comments | CommentUncheckedUpdateManyWithoutThreadNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutThreadNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutBlockedInput | UserUncheckedUpdateWithoutBlockedInput | No |
| create | UserCreateWithoutBlockedInput | UserUncheckedCreateWithoutBlockedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| oauth_token | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedId | String | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| chatRoomId | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| threadId | String | No |
| content | String | No |
| visible | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| galleryId | String | Null | Yes |
| threadId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| communeId | String | No |
| role | Role | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fanOfId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fanId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followingId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| description | String | Null | Yes |
| shareId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| galleryId | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| postId | String | Null | Yes |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| commentId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| postId | String | Null | Yes |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedGallery | GalleryUpdateOneWithoutBlockingNestedInput | No |
| blockedThread | CommentThreadUpdateOneWithoutBlockedNestedInput | No |
| user | UserUpdateOneRequiredWithoutBlockedNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedUser | UserUpdateOneRequiredWithoutBlockingNestedInput | No |
| blockedGallery | GalleryUpdateOneWithoutBlockingNestedInput | No |
| blockedThread | CommentThreadUpdateOneWithoutBlockedNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| chatRoom | ChatRoomUpdateOneRequiredWithoutMessagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| chatRoomId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| chatRoomId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| thread | CommentThreadUpdateOneRequiredWithoutCommentsNestedInput | No |
| likes | LikeUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| threadId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| likes | LikeUncheckedUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| threadId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| gallery | GalleryUpdateOneWithoutCommuneNestedInput | No |
| thread | CommentThreadUpdateOneWithoutCommuneNestedInput | No |
| users | CommuneUserUpdateManyWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| users | CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | EnumEntityFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| commune | CommuneUpdateOneRequiredWithoutUsersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| communeId | String | StringFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| communeId | String | StringFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fanOf | UserUpdateOneRequiredWithoutFansNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| fanOfId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| fanOfId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| fan | UserUpdateOneRequiredWithoutFanOfNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| fanId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| fanId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| following | UserUpdateOneWithoutFollowingNestedInput | No |
| character | CharacterUpdateOneWithoutFansNestedInput | No |
| book | BookUpdateOneWithoutFansNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followingId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followingId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowerNestedInput | No |
| character | CharacterUpdateOneWithoutFansNestedInput | No |
| book | BookUpdateOneWithoutFansNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUpdateOneWithoutGalleryNestedInput | No |
| images | ImageUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blocking | BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput | No |
| commune | CommuneUncheckedUpdateOneWithoutGalleryNestedInput | No |
| images | ImageUncheckedUpdateManyWithoutGalleryNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutGalleryNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutGalleryNestedInput | No |
| book_gallery | BookUncheckedUpdateOneWithoutGalleryNestedInput | No |
| character_gallery | CharacterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| chapter_gallery | ChapterUncheckedUpdateOneWithoutGalleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| gallery | GalleryUpdateOneWithoutImagesNestedInput | No |
| post | PostUpdateOneWithoutImagesNestedInput | No |
| likes | LikeUpdateManyWithoutImageNestedInput | No |
| shares | ShareUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| likes | LikeUncheckedUpdateManyWithoutImageNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| comment | CommentUpdateOneWithoutLikesNestedInput | No |
| gallery | GalleryUpdateOneWithoutLikesNestedInput | No |
| image | ImageUpdateOneWithoutLikesNestedInput | No |
| post | PostUpdateOneWithoutLikesNestedInput | No |
| character | CharacterUpdateOneWithoutLikesNestedInput | No |
| book | BookUpdateOneWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| images | ImageUpdateManyWithoutPostNestedInput | No |
| likes | LikeUpdateManyWithoutPostNestedInput | No |
| news | NewsUpdateOneWithoutPostNestedInput | No |
| comment | PostUpdateOneWithoutPost_commentsNestedInput | No |
| post_comments | PostUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| images | ImageUncheckedUpdateManyWithoutPostNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutPostNestedInput | No |
| news | NewsUncheckedUpdateOneWithoutPostNestedInput | No |
| post_comments | PostUncheckedUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| gallery | GalleryUpdateOneWithoutSharesNestedInput | No |
| image | ImageUpdateOneWithoutSharesNestedInput | No |
| post | PostUpdateOneWithoutSharesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| messages | ChatMessageUpdateManyWithoutChatRoomNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| messages | ChatMessageUncheckedUpdateManyWithoutChatRoomNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| party | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| status | BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null | Yes |
| prospect | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| cover | String | StringFieldUpdateOperationsInput | No |
| genreId | String | StringFieldUpdateOperationsInput | No |
| hook | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| synopsis | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| back | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| words | Int | IntFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| authorId | String | No |
| galleryId | String | Null | Yes |
| shareId | String | Null | Yes |
| url | String | No |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | Null | Yes |
| shareId | String | Null | Yes |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| author | UserUpdateOneRequiredWithoutImagesNestedInput | No |
| gallery | GalleryUpdateOneWithoutImagesNestedInput | No |
| likes | LikeUpdateManyWithoutImageNestedInput | No |
| shares | ShareUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| likes | LikeUncheckedUpdateManyWithoutImageNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| comment | CommentUpdateOneWithoutLikesNestedInput | No |
| gallery | GalleryUpdateOneWithoutLikesNestedInput | No |
| image | ImageUpdateOneWithoutLikesNestedInput | No |
| character | CharacterUpdateOneWithoutLikesNestedInput | No |
| book | BookUpdateOneWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| images | ImageUpdateManyWithoutPostNestedInput | No |
| likes | LikeUpdateManyWithoutPostNestedInput | No |
| author | UserUpdateOneRequiredWithoutPostsNestedInput | No |
| news | NewsUpdateOneWithoutPostNestedInput | No |
| post_comments | PostUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| images | ImageUncheckedUpdateManyWithoutPostNestedInput | No |
| likes | LikeUncheckedUpdateManyWithoutPostNestedInput | No |
| news | NewsUncheckedUpdateOneWithoutPostNestedInput | No |
| post_comments | PostUncheckedUpdateManyWithoutCommentNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutPostNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutSharesNestedInput | No |
| gallery | GalleryUpdateOneWithoutSharesNestedInput | No |
| image | ImageUpdateOneWithoutSharesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedId | String | No |
| threadId | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | Null | Yes |
| authorId | String | No |
| shareId | String | Null | Yes |
| url | String | No |
| postId | String | Null | Yes |
| height | Int | Null | Yes |
| width | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| postId | String | Null | Yes |
| imageId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedUser | UserUpdateOneRequiredWithoutBlockingNestedInput | No |
| blockedThread | CommentThreadUpdateOneWithoutBlockedNestedInput | No |
| user | UserUpdateOneRequiredWithoutBlockedNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedId | String | StringFieldUpdateOperationsInput | No |
| threadId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| author | UserUpdateOneRequiredWithoutImagesNestedInput | No |
| post | PostUpdateOneWithoutImagesNestedInput | No |
| likes | LikeUpdateManyWithoutImageNestedInput | No |
| shares | ShareUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| title | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | StringFieldUpdateOperationsInput | No |
| shareId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| url | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| height | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| width | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| likes | LikeUncheckedUpdateManyWithoutImageNestedInput | No |
| shares | ShareUncheckedUpdateManyWithoutImageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| comment | CommentUpdateOneWithoutLikesNestedInput | No |
| image | ImageUpdateOneWithoutLikesNestedInput | No |
| post | PostUpdateOneWithoutLikesNestedInput | No |
| character | CharacterUpdateOneWithoutLikesNestedInput | No |
| book | BookUpdateOneWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutSharesNestedInput | No |
| image | ImageUpdateOneWithoutSharesNestedInput | No |
| post | PostUpdateOneWithoutSharesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| postId | String | Null | Yes |
| galleryId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| comment | CommentUpdateOneWithoutLikesNestedInput | No |
| gallery | GalleryUpdateOneWithoutLikesNestedInput | No |
| post | PostUpdateOneWithoutLikesNestedInput | No |
| character | CharacterUpdateOneWithoutLikesNestedInput | No |
| book | BookUpdateOneWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutSharesNestedInput | No |
| gallery | GalleryUpdateOneWithoutSharesNestedInput | No |
| post | PostUpdateOneWithoutSharesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| authorId | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutChatMessagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| seen | Boolean | BoolFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| membershipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | Null | Yes |
| entityId | String | Null | Yes |
| blockedId | String | No |
| galleryId | String | Null | Yes |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| authorId | String | No |
| content | String | No |
| visible | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedUser | UserUpdateOneRequiredWithoutBlockingNestedInput | No |
| blockedGallery | GalleryUpdateOneWithoutBlockingNestedInput | No |
| user | UserUpdateOneRequiredWithoutBlockedNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| entity | Entity | NullableEnumEntityFieldUpdateOperationsInput | Null | Yes |
| entityId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blockedId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutCommentsNestedInput | No |
| likes | LikeUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| threadType | Entity | EnumEntityFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| visible | Boolean | BoolFieldUpdateOperationsInput | No |
| likes | LikeUncheckedUpdateManyWithoutCommentNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| characterId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| gallery | GalleryUpdateOneWithoutLikesNestedInput | No |
| image | ImageUpdateOneWithoutLikesNestedInput | No |
| post | PostUpdateOneWithoutLikesNestedInput | No |
| character | CharacterUpdateOneWithoutLikesNestedInput | No |
| book | BookUpdateOneWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| userId | String | No |
| role | Role | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutCommunesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| role | Role | EnumRoleFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | Null | Yes |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| hook | String | Null | Yes |
| synopsis | String | Null | Yes |
| back | String | Null | Yes |
| words | Int | No |
| galleryId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| url | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| galleryId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| characterId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| emailVerified | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| membershipId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| characters | CharacterUpdateManyWithoutChaptersNestedInput | No |
| gallery | GalleryUpdateOneWithoutChapter_galleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characters | CharacterUncheckedUpdateManyWithoutChaptersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| familyName | String | StringFieldUpdateOperationsInput | No |
| givenName | String | StringFieldUpdateOperationsInput | No |
| middleName | String | StringFieldUpdateOperationsInput | No |
| thumbnail | String | StringFieldUpdateOperationsInput | No |
| age | String | StringFieldUpdateOperationsInput | No |
| role | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| backstory | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| archetype | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowerNestedInput | No |
| following | UserUpdateOneWithoutFollowingNestedInput | No |
| character | CharacterUpdateOneWithoutFansNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| comment | CommentUpdateOneWithoutLikesNestedInput | No |
| gallery | GalleryUpdateOneWithoutLikesNestedInput | No |
| image | ImageUpdateOneWithoutLikesNestedInput | No |
| post | PostUpdateOneWithoutLikesNestedInput | No |
| character | CharacterUpdateOneWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| characterId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | Null | Yes |
| imageId | String | Null | Yes |
| commentId | String | Null | Yes |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | Null | Yes |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| bookId | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| author | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| comment | CommentUpdateOneWithoutLikesNestedInput | No |
| gallery | GalleryUpdateOneWithoutLikesNestedInput | No |
| image | ImageUpdateOneWithoutLikesNestedInput | No |
| post | PostUpdateOneWithoutLikesNestedInput | No |
| book | BookUpdateOneWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| authorId | String | StringFieldUpdateOperationsInput | No |
| postId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| imageId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| commentId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowerNestedInput | No |
| following | UserUpdateOneWithoutFollowingNestedInput | No |
| book | BookUpdateOneWithoutFansNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followerId | String | StringFieldUpdateOperationsInput | No |
| followingId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| bookId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| book | BookUpdateOneRequiredWithoutChaptersNestedInput | No |
| gallery | GalleryUpdateOneWithoutChapter_galleryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| active | Boolean | BoolFieldUpdateOperationsInput | No |
| content | String | StringFieldUpdateOperationsInput | No |
| words | Int | IntFieldUpdateOperationsInput | No |
| bookId | String | StringFieldUpdateOperationsInput | No |
| galleryId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | No |
| String | No | |
| emailVerified | DateTime | No |
| image | String | No |
| membershipId | String | No |
| accounts | Account[] | No |
| blocking | Block[] | No |
| blocked | Block[] | No |
| chatMessages | ChatMessage[] | No |
| comments | Comment[] | No |
| ownedCommunes | Commune[] | No |
| communes | CommuneUser[] | No |
| fanOf | Fan[] | No |
| fans | Fan[] | No |
| follower | Follow[] | No |
| following | Follow[] | No |
| galleries | Gallery[] | No |
| images | Image[] | No |
| likes | Like[] | No |
| posts | Post[] | No |
| sessions | Session[] | No |
| shares | Share[] | No |
| chats | ChatRoom[] | No |
| membership | Membership | No |
| books | Book[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| content | String | No |
| shareId | String | No |
| commentId | String | No |
| authorId | String | Yes |
| images | Image[] | No |
| likes | Like[] | No |
| author | User | Yes |
| news | News | No |
| comment | Post | No |
| post_comments | Post[] | No |
| shares | Share[] | No |
| _count | PostCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| title | String | Yes |
| banner | String | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| postId | String | Yes |
| audience | Audience | Yes |
| views | Int | Yes |
| priority | Int | Yes |
| post | Post | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| title | String | No |
| description | String | No |
| authorId | String | Yes |
| shareId | String | No |
| blocking | Block[] | No |
| commune | Commune | No |
| author | User | Yes |
| images | Image[] | No |
| likes | Like[] | No |
| shares | Share[] | No |
| book_gallery | Book | No |
| character_gallery | Character | No |
| chapter_gallery | Chapter | No |
| _count | GalleryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| title | String | No |
| authorId | String | Yes |
| galleryId | String | No |
| shareId | String | No |
| url | String | Yes |
| postId | String | No |
| height | Int | No |
| width | Int | No |
| author | User | Yes |
| gallery | Gallery | No |
| post | Post | No |
| likes | Like[] | No |
| shares | Share[] | No |
| _count | ImageCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| authorId | String | Yes |
| postId | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| galleryId | String | No |
| imageId | String | No |
| commentId | String | No |
| characterId | String | No |
| bookId | String | No |
| author | User | Yes |
| comment | Comment | No |
| gallery | Gallery | No |
| image | Image | No |
| post | Post | No |
| character | Character | No |
| book | Book | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| authorId | String | Yes |
| postId | String | No |
| galleryId | String | No |
| imageId | String | No |
| author | User | Yes |
| gallery | Gallery | No |
| image | Image | No |
| post | Post | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| followerId | String | Yes |
| followingId | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| characterId | String | No |
| bookId | String | No |
| follower | User | Yes |
| following | User | No |
| character | Character | No |
| book | Book | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| fanId | String | Yes |
| fanOfId | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| fan | User | Yes |
| fanOf | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| party | String | Yes |
| messages | ChatMessage[] | No |
| users | User[] | No |
| _count | ChatRoomCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| seen | Boolean | Yes |
| chatRoomId | String | Yes |
| authorId | String | Yes |
| content | String | Yes |
| author | User | Yes |
| chatRoom | ChatRoom | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| entity | Entity | Yes |
| requiredRole | Role | Yes |
| blocked | Block[] | No |
| comments | Comment[] | No |
| commune | Commune | No |
| _count | CommentThreadCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| threadType | Entity | Yes |
| threadId | String | Yes |
| authorId | String | Yes |
| content | String | Yes |
| visible | Boolean | Yes |
| author | User | Yes |
| thread | CommentThread | Yes |
| likes | Like[] | No |
| _count | CommentCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| ownerId | String | Yes |
| entity | Entity | Yes |
| galleryId | String | No |
| threadId | String | No |
| gallery | Gallery | No |
| owner | User | Yes |
| thread | CommentThread | No |
| users | CommuneUser[] | No |
| _count | CommuneCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| communeId | String | Yes |
| userId | String | Yes |
| role | Role | Yes |
| commune | Commune | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| active | Boolean | Yes |
| level | Audience | No |
| user | User | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| title | String | Yes |
| description | String | Yes |
| fiction | Boolean | Yes |
| books | Book[] | No |
| covers | Covers[] | No |
| _count | GenreCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| url | String | Yes |
| genreId | String | Yes |
| genre | Genre | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| title | String | Yes |
| description | String | Yes |
| books | Book[] | No |
| _count | BookCategoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| active | Boolean | Yes |
| status | BookStatus | No |
| prospect | Boolean | Yes |
| title | String | Yes |
| cover | String | Yes |
| genreId | String | Yes |
| hook | String | No |
| synopsis | String | No |
| back | String | No |
| words | Int | Yes |
| galleryId | String | No |
| genre | Genre | Yes |
| categories | BookCategory[] | No |
| authors | User[] | No |
| chapters | Chapter[] | No |
| characters | Character[] | No |
| gallery | Gallery | No |
| fans | Follow[] | No |
| likes | Like[] | No |
| _count | BookCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| active | Boolean | Yes |
| name | String | Yes |
| familyName | String | Yes |
| givenName | String | Yes |
| middleName | String | Yes |
| thumbnail | String | Yes |
| age | String | Yes |
| role | String | Yes |
| description | String | Yes |
| backstory | String | Yes |
| title | String | Yes |
| archetype | String | Yes |
| galleryId | String | No |
| likes | Like[] | No |
| fans | Follow[] | No |
| books | Book[] | No |
| chapters | Chapter[] | No |
| gallery | Gallery | No |
| _count | CharacterCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| active | Boolean | Yes |
| content | String | Yes |
| words | Int | Yes |
| bookId | String | Yes |
| galleryId | String | No |
| characters | Character[] | No |
| book | Book | Yes |
| gallery | Gallery | No |
| _count | ChapterCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| entity | Entity | No |
| entityId | String | No |
| blockedId | String | Yes |
| galleryId | String | No |
| threadId | String | No |
| userId | String | Yes |
| blockedUser | User | Yes |
| blockedGallery | Gallery | No |
| blockedThread | CommentThread | No |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | Yes |
| token | String | Yes |
| expires | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| userId | String | Yes |
| type | String | Yes |
| provider | String | Yes |
| providerAccountId | String | Yes |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| oauth_token_secret | String | No |
| oauth_token | String | No |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| sessionToken | String | Yes |
| userId | String | Yes |
| expires | DateTime | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | No |
| String | No | |
| emailVerified | DateTime | No |
| image | String | No |
| membershipId | String | No |
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PostCountAggregateOutputType | No |
| _min | PostMinAggregateOutputType | No |
| _max | PostMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| content | String | No |
| shareId | String | No |
| commentId | String | No |
| authorId | String | Yes |
| _count | PostCountAggregateOutputType | No |
| _min | PostMinAggregateOutputType | No |
| _max | PostMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | NewsCountAggregateOutputType | No |
| _avg | NewsAvgAggregateOutputType | No |
| _sum | NewsSumAggregateOutputType | No |
| _min | NewsMinAggregateOutputType | No |
| _max | NewsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| title | String | Yes |
| banner | String | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| postId | String | Yes |
| audience | Audience | Yes |
| views | Int | Yes |
| priority | Int | Yes |
| _count | NewsCountAggregateOutputType | No |
| _avg | NewsAvgAggregateOutputType | No |
| _sum | NewsSumAggregateOutputType | No |
| _min | NewsMinAggregateOutputType | No |
| _max | NewsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | GalleryCountAggregateOutputType | No |
| _min | GalleryMinAggregateOutputType | No |
| _max | GalleryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| title | String | No |
| description | String | No |
| authorId | String | Yes |
| shareId | String | No |
| _count | GalleryCountAggregateOutputType | No |
| _min | GalleryMinAggregateOutputType | No |
| _max | GalleryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ImageCountAggregateOutputType | No |
| _avg | ImageAvgAggregateOutputType | No |
| _sum | ImageSumAggregateOutputType | No |
| _min | ImageMinAggregateOutputType | No |
| _max | ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| title | String | No |
| authorId | String | Yes |
| galleryId | String | No |
| shareId | String | No |
| url | String | Yes |
| postId | String | No |
| height | Int | No |
| width | Int | No |
| _count | ImageCountAggregateOutputType | No |
| _avg | ImageAvgAggregateOutputType | No |
| _sum | ImageSumAggregateOutputType | No |
| _min | ImageMinAggregateOutputType | No |
| _max | ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LikeCountAggregateOutputType | No |
| _min | LikeMinAggregateOutputType | No |
| _max | LikeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| authorId | String | Yes |
| postId | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| galleryId | String | No |
| imageId | String | No |
| commentId | String | No |
| characterId | String | No |
| bookId | String | No |
| _count | LikeCountAggregateOutputType | No |
| _min | LikeMinAggregateOutputType | No |
| _max | LikeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ShareCountAggregateOutputType | No |
| _min | ShareMinAggregateOutputType | No |
| _max | ShareMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| authorId | String | Yes |
| postId | String | No |
| galleryId | String | No |
| imageId | String | No |
| _count | ShareCountAggregateOutputType | No |
| _min | ShareMinAggregateOutputType | No |
| _max | ShareMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FollowCountAggregateOutputType | No |
| _min | FollowMinAggregateOutputType | No |
| _max | FollowMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| followerId | String | Yes |
| followingId | String | No |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| characterId | String | No |
| bookId | String | No |
| _count | FollowCountAggregateOutputType | No |
| _min | FollowMinAggregateOutputType | No |
| _max | FollowMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FanCountAggregateOutputType | No |
| _min | FanMinAggregateOutputType | No |
| _max | FanMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| fanId | String | Yes |
| fanOfId | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| _count | FanCountAggregateOutputType | No |
| _min | FanMinAggregateOutputType | No |
| _max | FanMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChatRoomCountAggregateOutputType | No |
| _min | ChatRoomMinAggregateOutputType | No |
| _max | ChatRoomMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| party | String | Yes |
| _count | ChatRoomCountAggregateOutputType | No |
| _min | ChatRoomMinAggregateOutputType | No |
| _max | ChatRoomMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChatMessageCountAggregateOutputType | No |
| _min | ChatMessageMinAggregateOutputType | No |
| _max | ChatMessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| visible | Boolean | Yes |
| seen | Boolean | Yes |
| chatRoomId | String | Yes |
| authorId | String | Yes |
| content | String | Yes |
| _count | ChatMessageCountAggregateOutputType | No |
| _min | ChatMessageMinAggregateOutputType | No |
| _max | ChatMessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CommentThreadCountAggregateOutputType | No |
| _min | CommentThreadMinAggregateOutputType | No |
| _max | CommentThreadMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| entity | Entity | Yes |
| requiredRole | Role | Yes |
| _count | CommentThreadCountAggregateOutputType | No |
| _min | CommentThreadMinAggregateOutputType | No |
| _max | CommentThreadMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CommentCountAggregateOutputType | No |
| _min | CommentMinAggregateOutputType | No |
| _max | CommentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| threadType | Entity | Yes |
| threadId | String | Yes |
| authorId | String | Yes |
| content | String | Yes |
| visible | Boolean | Yes |
| _count | CommentCountAggregateOutputType | No |
| _min | CommentMinAggregateOutputType | No |
| _max | CommentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CommuneCountAggregateOutputType | No |
| _min | CommuneMinAggregateOutputType | No |
| _max | CommuneMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| ownerId | String | Yes |
| entity | Entity | Yes |
| galleryId | String | No |
| threadId | String | No |
| _count | CommuneCountAggregateOutputType | No |
| _min | CommuneMinAggregateOutputType | No |
| _max | CommuneMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CommuneUserCountAggregateOutputType | No |
| _min | CommuneUserMinAggregateOutputType | No |
| _max | CommuneUserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| communeId | String | Yes |
| userId | String | Yes |
| role | Role | Yes |
| _count | CommuneUserCountAggregateOutputType | No |
| _min | CommuneUserMinAggregateOutputType | No |
| _max | CommuneUserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | MembershipCountAggregateOutputType | No |
| _min | MembershipMinAggregateOutputType | No |
| _max | MembershipMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| active | Boolean | Yes |
| level | Audience | No |
| _count | MembershipCountAggregateOutputType | No |
| _min | MembershipMinAggregateOutputType | No |
| _max | MembershipMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | GenreCountAggregateOutputType | No |
| _min | GenreMinAggregateOutputType | No |
| _max | GenreMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| title | String | Yes |
| description | String | Yes |
| fiction | Boolean | Yes |
| _count | GenreCountAggregateOutputType | No |
| _min | GenreMinAggregateOutputType | No |
| _max | GenreMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CoversCountAggregateOutputType | No |
| _min | CoversMinAggregateOutputType | No |
| _max | CoversMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| url | String | Yes |
| genreId | String | Yes |
| _count | CoversCountAggregateOutputType | No |
| _min | CoversMinAggregateOutputType | No |
| _max | CoversMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BookCategoryCountAggregateOutputType | No |
| _min | BookCategoryMinAggregateOutputType | No |
| _max | BookCategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| title | String | Yes |
| description | String | Yes |
| _count | BookCategoryCountAggregateOutputType | No |
| _min | BookCategoryMinAggregateOutputType | No |
| _max | BookCategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BookCountAggregateOutputType | No |
| _avg | BookAvgAggregateOutputType | No |
| _sum | BookSumAggregateOutputType | No |
| _min | BookMinAggregateOutputType | No |
| _max | BookMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| active | Boolean | Yes |
| status | BookStatus | No |
| prospect | Boolean | Yes |
| title | String | Yes |
| cover | String | Yes |
| genreId | String | Yes |
| hook | String | No |
| synopsis | String | No |
| back | String | No |
| words | Int | Yes |
| galleryId | String | No |
| _count | BookCountAggregateOutputType | No |
| _avg | BookAvgAggregateOutputType | No |
| _sum | BookSumAggregateOutputType | No |
| _min | BookMinAggregateOutputType | No |
| _max | BookMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CharacterCountAggregateOutputType | No |
| _min | CharacterMinAggregateOutputType | No |
| _max | CharacterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| active | Boolean | Yes |
| name | String | Yes |
| familyName | String | Yes |
| givenName | String | Yes |
| middleName | String | Yes |
| thumbnail | String | Yes |
| age | String | Yes |
| role | String | Yes |
| description | String | Yes |
| backstory | String | Yes |
| title | String | Yes |
| archetype | String | Yes |
| galleryId | String | No |
| _count | CharacterCountAggregateOutputType | No |
| _min | CharacterMinAggregateOutputType | No |
| _max | CharacterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ChapterCountAggregateOutputType | No |
| _avg | ChapterAvgAggregateOutputType | No |
| _sum | ChapterSumAggregateOutputType | No |
| _min | ChapterMinAggregateOutputType | No |
| _max | ChapterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| active | Boolean | Yes |
| content | String | Yes |
| words | Int | Yes |
| bookId | String | Yes |
| galleryId | String | No |
| _count | ChapterCountAggregateOutputType | No |
| _avg | ChapterAvgAggregateOutputType | No |
| _sum | ChapterSumAggregateOutputType | No |
| _min | ChapterMinAggregateOutputType | No |
| _max | ChapterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BlockCountAggregateOutputType | No |
| _min | BlockMinAggregateOutputType | No |
| _max | BlockMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| entity | Entity | No |
| entityId | String | No |
| blockedId | String | Yes |
| galleryId | String | No |
| threadId | String | No |
| userId | String | Yes |
| _count | BlockCountAggregateOutputType | No |
| _min | BlockMinAggregateOutputType | No |
| _max | BlockMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | VerificationTokenCountAggregateOutputType | No |
| _min | VerificationTokenMinAggregateOutputType | No |
| _max | VerificationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | Yes |
| token | String | Yes |
| expires | DateTime | Yes |
| _count | VerificationTokenCountAggregateOutputType | No |
| _min | VerificationTokenMinAggregateOutputType | No |
| _max | VerificationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| userId | String | Yes |
| type | String | Yes |
| provider | String | Yes |
| providerAccountId | String | Yes |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| oauth_token_secret | String | No |
| oauth_token | String | No |
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| sessionToken | String | Yes |
| userId | String | Yes |
| expires | DateTime | Yes |
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| accounts | Int | Yes |
| blocking | Int | Yes |
| blocked | Int | Yes |
| chatMessages | Int | Yes |
| comments | Int | Yes |
| ownedCommunes | Int | Yes |
| communes | Int | Yes |
| fanOf | Int | Yes |
| fans | Int | Yes |
| follower | Int | Yes |
| following | Int | Yes |
| galleries | Int | Yes |
| images | Int | Yes |
| likes | Int | Yes |
| posts | Int | Yes |
| sessions | Int | Yes |
| shares | Int | Yes |
| chats | Int | Yes |
| books | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| Int | Yes | |
| emailVerified | Int | Yes |
| image | Int | Yes |
| membershipId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| emailVerified | DateTime | No |
| image | String | No |
| membershipId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| String | No | |
| emailVerified | DateTime | No |
| image | String | No |
| membershipId | String | No |
| Name | Type | Nullable |
|---|---|---|
| images | Int | Yes |
| likes | Int | Yes |
| post_comments | Int | Yes |
| shares | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| visible | Int | Yes |
| content | Int | Yes |
| shareId | Int | Yes |
| commentId | Int | Yes |
| authorId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | No |
| shareId | String | No |
| commentId | String | No |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| content | String | No |
| shareId | String | No |
| commentId | String | No |
| authorId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| visible | Int | Yes |
| title | Int | Yes |
| banner | Int | Yes |
| startDate | Int | Yes |
| endDate | Int | Yes |
| postId | Int | Yes |
| audience | Int | Yes |
| views | Int | Yes |
| priority | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| views | Float | No |
| priority | Float | No |
| Name | Type | Nullable |
|---|---|---|
| views | Int | No |
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| banner | String | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| postId | String | No |
| audience | Audience | No |
| views | Int | No |
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| banner | String | No |
| startDate | DateTime | No |
| endDate | DateTime | No |
| postId | String | No |
| audience | Audience | No |
| views | Int | No |
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| blocking | Int | Yes |
| images | Int | Yes |
| likes | Int | Yes |
| shares | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| visible | Int | Yes |
| title | Int | Yes |
| description | Int | Yes |
| authorId | Int | Yes |
| shareId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| description | String | No |
| authorId | String | No |
| shareId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| description | String | No |
| authorId | String | No |
| shareId | String | No |
| Name | Type | Nullable |
|---|---|---|
| likes | Int | Yes |
| shares | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| visible | Int | Yes |
| title | Int | Yes |
| authorId | Int | Yes |
| galleryId | Int | Yes |
| shareId | Int | Yes |
| url | Int | Yes |
| postId | Int | Yes |
| height | Int | Yes |
| width | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Float | No |
| width | Float | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| authorId | String | No |
| galleryId | String | No |
| shareId | String | No |
| url | String | No |
| postId | String | No |
| height | Int | No |
| width | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| title | String | No |
| authorId | String | No |
| galleryId | String | No |
| shareId | String | No |
| url | String | No |
| postId | String | No |
| height | Int | No |
| width | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| authorId | Int | Yes |
| postId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| galleryId | Int | Yes |
| imageId | Int | Yes |
| commentId | Int | Yes |
| characterId | Int | Yes |
| bookId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | No |
| imageId | String | No |
| commentId | String | No |
| characterId | String | No |
| bookId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| authorId | String | No |
| postId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| galleryId | String | No |
| imageId | String | No |
| commentId | String | No |
| characterId | String | No |
| bookId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| visible | Int | Yes |
| authorId | Int | Yes |
| postId | Int | Yes |
| galleryId | Int | Yes |
| imageId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| postId | String | No |
| galleryId | String | No |
| imageId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| authorId | String | No |
| postId | String | No |
| galleryId | String | No |
| imageId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| followerId | Int | Yes |
| followingId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| characterId | Int | Yes |
| bookId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | No |
| bookId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followerId | String | No |
| followingId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| characterId | String | No |
| bookId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| fanId | Int | Yes |
| fanOfId | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fanId | String | No |
| fanOfId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| fanId | String | No |
| fanOfId | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| messages | Int | Yes |
| users | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| visible | Int | Yes |
| party | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| party | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| visible | Int | Yes |
| seen | Int | Yes |
| chatRoomId | Int | Yes |
| authorId | Int | Yes |
| content | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| chatRoomId | String | No |
| authorId | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| visible | Boolean | No |
| seen | Boolean | No |
| chatRoomId | String | No |
| authorId | String | No |
| content | String | No |
| Name | Type | Nullable |
|---|---|---|
| blocked | Int | Yes |
| comments | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| entity | Int | Yes |
| requiredRole | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| requiredRole | Role | No |
| Name | Type | Nullable |
|---|---|---|
| likes | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| threadType | Int | Yes |
| threadId | Int | Yes |
| authorId | Int | Yes |
| content | Int | Yes |
| visible | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| threadId | String | No |
| authorId | String | No |
| content | String | No |
| visible | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| threadType | Entity | No |
| threadId | String | No |
| authorId | String | No |
| content | String | No |
| visible | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| users | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| ownerId | Int | Yes |
| entity | Int | Yes |
| galleryId | Int | Yes |
| threadId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| ownerId | String | No |
| entity | Entity | No |
| galleryId | String | No |
| threadId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| ownerId | String | No |
| entity | Entity | No |
| galleryId | String | No |
| threadId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| communeId | Int | Yes |
| userId | Int | Yes |
| role | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| communeId | String | No |
| userId | String | No |
| role | Role | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| communeId | String | No |
| userId | String | No |
| role | Role | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| active | Int | Yes |
| level | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| level | Audience | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| level | Audience | No |
| Name | Type | Nullable |
|---|---|---|
| books | Int | Yes |
| covers | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| title | Int | Yes |
| description | Int | Yes |
| fiction | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| fiction | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| url | Int | Yes |
| genreId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| url | String | No |
| genreId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| url | String | No |
| genreId | String | No |
| Name | Type | Nullable |
|---|---|---|
| books | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| title | Int | Yes |
| description | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| title | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| categories | Int | Yes |
| authors | Int | Yes |
| chapters | Int | Yes |
| characters | Int | Yes |
| fans | Int | Yes |
| likes | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| active | Int | Yes |
| status | Int | Yes |
| prospect | Int | Yes |
| title | Int | Yes |
| cover | Int | Yes |
| genreId | Int | Yes |
| hook | Int | Yes |
| synopsis | Int | Yes |
| back | Int | Yes |
| words | Int | Yes |
| galleryId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| words | Float | No |
| Name | Type | Nullable |
|---|---|---|
| words | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | No |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | No |
| synopsis | String | No |
| back | String | No |
| words | Int | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| status | BookStatus | No |
| prospect | Boolean | No |
| title | String | No |
| cover | String | No |
| genreId | String | No |
| hook | String | No |
| synopsis | String | No |
| back | String | No |
| words | Int | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| likes | Int | Yes |
| fans | Int | Yes |
| books | Int | Yes |
| chapters | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| active | Int | Yes |
| name | Int | Yes |
| familyName | Int | Yes |
| givenName | Int | Yes |
| middleName | Int | Yes |
| thumbnail | Int | Yes |
| age | Int | Yes |
| role | Int | Yes |
| description | Int | Yes |
| backstory | Int | Yes |
| title | Int | Yes |
| archetype | Int | Yes |
| galleryId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| name | String | No |
| familyName | String | No |
| givenName | String | No |
| middleName | String | No |
| thumbnail | String | No |
| age | String | No |
| role | String | No |
| description | String | No |
| backstory | String | No |
| title | String | No |
| archetype | String | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| characters | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| active | Int | Yes |
| content | Int | Yes |
| words | Int | Yes |
| bookId | Int | Yes |
| galleryId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| words | Float | No |
| Name | Type | Nullable |
|---|---|---|
| words | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| bookId | String | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| active | Boolean | No |
| content | String | No |
| words | Int | No |
| bookId | String | No |
| galleryId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| entity | Int | Yes |
| entityId | Int | Yes |
| blockedId | Int | Yes |
| galleryId | Int | Yes |
| threadId | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| entityId | String | No |
| blockedId | String | No |
| galleryId | String | No |
| threadId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| entity | Entity | No |
| entityId | String | No |
| blockedId | String | No |
| galleryId | String | No |
| threadId | String | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | Int | Yes |
| token | Int | Yes |
| expires | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| type | Int | Yes |
| provider | Int | Yes |
| providerAccountId | Int | Yes |
| refresh_token | Int | Yes |
| access_token | Int | Yes |
| expires_at | Int | Yes |
| token_type | Int | Yes |
| scope | Int | Yes |
| id_token | Int | Yes |
| session_state | Int | Yes |
| oauth_token_secret | Int | Yes |
| oauth_token | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Float | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| oauth_token_secret | String | No |
| oauth_token | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| oauth_token_secret | String | No |
| oauth_token | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| sessionToken | Int | Yes |
| userId | Int | Yes |
| expires | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| userId | String | No |
| expires | DateTime | No |